Full Code of MrMarble/termsvg for AI

main 87aa74ac9f7e cached
71 files
744.3 KB
391.8k tokens
297 symbols
1 requests
Download .txt
Showing preview only (807K chars total). Download the full file or copy to clipboard to get everything.
Repository: MrMarble/termsvg
Branch: main
Commit: 87aa74ac9f7e
Files: 71
Total size: 744.3 KB

Directory structure:
gitextract_gqnerqqf/

├── .github/
│   └── workflows/
│       ├── golangci-lint.yml
│       └── release.yml
├── .gitignore
├── .golangci.yml
├── .goreleaser.yml
├── .pre-commit-config.yaml
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── Taskfile.yml
├── cmd/
│   ├── termsvg/
│   │   ├── export/
│   │   │   └── export.go
│   │   ├── main.go
│   │   ├── main_windows.go
│   │   ├── play/
│   │   │   └── play.go
│   │   └── record/
│   │       └── record.go
│   └── themegen/
│       └── main.go
├── examples/
│   ├── 256colors.cast
│   ├── 444816.cast
│   ├── README.md
│   ├── htop.cast
│   ├── rgb.cast
│   └── session.cast
├── go.mod
├── go.sum
├── mise.toml
├── pkg/
│   ├── asciicast/
│   │   ├── asciicast.go
│   │   ├── event.go
│   │   └── testdata/
│   │       ├── TestMarshal.golden
│   │       └── TestUnmarshal.golden
│   ├── color/
│   │   ├── catalog.go
│   │   ├── catalog_test.go
│   │   ├── color.go
│   │   ├── colors.go
│   │   ├── colorsgen.go
│   │   └── palette.go
│   ├── ir/
│   │   ├── ir.go
│   │   ├── ir_test.go
│   │   └── processor.go
│   ├── progress/
│   │   └── progress.go
│   ├── raster/
│   │   ├── draw.go
│   │   ├── font.go
│   │   ├── paletted.go
│   │   ├── raster.go
│   │   ├── raster_test.go
│   │   ├── renderer.go
│   │   └── renderer_bench_test.go
│   ├── renderer/
│   │   ├── gif/
│   │   │   ├── renderer.go
│   │   │   └── renderer_test.go
│   │   ├── renderer.go
│   │   ├── svg/
│   │   │   ├── renderer.go
│   │   │   └── renderer_test.go
│   │   └── webm/
│   │       ├── renderer.go
│   │       └── renderer_test.go
│   ├── terminal/
│   │   └── terminal.go
│   └── theme/
│       ├── builtin.go
│       ├── generate.go
│       ├── loader.go
│       └── theme.go
├── scripts/
│   ├── install-termsvg.sh
│   └── update-filesize.sh
└── themes/
    ├── dracula.json
    ├── frappe.json
    ├── gruvbox-dark.json
    ├── gruvbox-light.json
    ├── latte.json
    ├── macchiato.json
    ├── mocha.json
    ├── monokai.json
    ├── nord.json
    ├── solarized-dark.json
    └── solarized-light.json

================================================
FILE CONTENTS
================================================

================================================
FILE: .github/workflows/golangci-lint.yml
================================================
name: golangci-lint

on:
  push:
    tags:
      - v*
    branches:
      - master
      - main
  pull_request:

permissions:
  contents: read

jobs:
  test:
    name: Test
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-go@v5
        with:
          go-version-file: go.mod
      - name: go mod tidy
        run: |
          go mod tidy
          if [ -n "$(git status --porcelain)" ]; then
            echo "Run 'go mod tidy' and push it"
            exit 1
          fi
      - name: golangci-lint
        uses: golangci/golangci-lint-action@v8
        with:
          version: latest
      - name: Run unit tests
        run: go test -v ./...


================================================
FILE: .github/workflows/release.yml
================================================
name: "Release a tag"

on:
  push:
    tags:
      - "*"

permissions:
  contents: write

jobs:
  release:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
        with:
          fetch-depth: 0

      - name: Install Go
        uses: actions/setup-go@v4
        with:
          go-version: '>=1.17'

      - name: Create release
        uses: goreleaser/goreleaser-action@v5
        with:
          version: latest
          args: release --clean
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

================================================
FILE: .gitignore
================================================
.vscode
/termsvg
*.cast
*.txt
.task
dist
*.svg
!examples/*.*
*.bench


================================================
FILE: .golangci.yml
================================================
version: "2"

formatters:
  enable:
    - goimports
    - gci
    - gofumpt

linters:
  enable:
    - asciicheck
    - bidichk
    - containedctx
    - contextcheck
    - decorder
    - durationcheck
    - errchkjson
    - errname
    - errorlint
    - exhaustive
    - funlen
    - goconst
    - gocritic
    - gocognit
    - gosec
    - lll
    - makezero
    - misspell
    - nolintlint
    - prealloc
    - revive
    - thelper
    - unconvert
    - wastedassign
  exclusions:
    rules:
      - linters:
          - revive
        text: "exported (type|function|const|method) .* should have comment"
      - linters:
          - revive
        text: "should have a package comment"
      - linters:
          - govet
        text: "declaration of \"err\" shadows"
      - linters:
          - errcheck
        text: "Error return value of"
  settings:
    errcheck:
      # report about assignment of errors to blank identifier: `num, _ := strconv.Atoi(numStr)`.
      check-blank: true
    govet:
      enable:
        - shadow
    staticcheck:
      # https://staticcheck.io/docs/options#checks
      checks: ["all", "-ST1000"]
    decorder:
      disable-dec-order-check: false
      disable-init-func-first-check: false
    gocritic:
      enabled-tags:
        - performance
        - style
        - experimental
    prealloc:
      simple: true
      range-loops: true
      for-loops: true
    nolintlint:
      require-explanation: false
      require-specific: true


================================================
FILE: .goreleaser.yml
================================================
version: 1

project_name: termsvg

before:
  hooks:
    - go mod tidy

release:
  github:
    owner: mrmarble
    name: termsvg

builds:
  - binary: termsvg
    env:
      - CGO_ENABLED=0
    goos:
      - linux
      - darwin
      - freebsd
      - windows
    goarch:
      - amd64
      - arm64
      - arm
      - "386"
    goarm:
      - "6"
      - "7"
    ignore:
      - goos: darwin
        goarch: "386"
      - goos: freebsd
        goarch: arm64
      - goos: windows
        goarch: arm64
      - goos: windows
        goarch: "arm"
      - goos: windows
        goarch: "386"

    flags:
      - -trimpath
    ldflags: -s -w -X main.version={{.Version}} -X main.commit={{.ShortCommit}} -X main.date={{.CommitDate}}
    gcflags:
      - all=-l -B
    mod_timestamp: '{{ .CommitTimestamp }}'
    main: ./cmd/termsvg

archives:
  - format: tar.gz
    wrap_in_directory: true
    format_overrides:
      - goos: darwin
        format: zip
      - goos: windows
        format: zip
    name_template: '{{ .ProjectName }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
    files:
      - LICENSE
      - README.md

checksum:
  name_template: '{{ .ProjectName }}-{{ .Version }}-checksums.txt'

snapshot:
  name_template: SNAPSHOT-{{ .Commit }}

changelog:
  sort: asc
  filters:
    exclude:
      - '^docs:'
      - '^test:'
  groups:
    - title: Features
      regexp: "^.*feat[(\\w)]*:+.*$"
      order: 0
    - title: 'Bug fixes'
      regexp: "^.*fix[(\\w)]*:+.*$"
      order: 1
    - title: Others
      order: 999

================================================
FILE: .pre-commit-config.yaml
================================================
repos:
    - repo: https://github.com/pre-commit/pre-commit-hooks
      rev: v3.2.0
      hooks:
        - id: trailing-whitespace
        - id: check-yaml
        - id: check-added-large-files
    - repo: https://github.com/compilerla/conventional-pre-commit
      rev: v1.2.0
      hooks:
        - id: conventional-pre-commit
          stages: [commit-msg]
    - repo: https://github.com/TekWizely/pre-commit-golang
      rev: v1.0.0-beta.5
      hooks:
        - id: go-fumpt
        - id: golangci-lint-mod
        - id: go-test-mod
exclude: 'examples|testdata'

================================================
FILE: CONTRIBUTING.md
================================================
# Contributing to TermSVG

## Reporting bugs

Open an issue in GitHub issue tracker.

Tell me what's the problem and include steps to reproduce it (reliably).
Including your OS/browser/terminal name and version in the report would be
great.

## Submitting patches with bug fixes

If you found a bug and made a patch for it:

1. Make sure your changes pass the [pre-commit](https://pre-commit.com/)
   [hooks](.pre-commit-config.yaml). You can install the hooks in your work
   tree by running `task setup` in your checked out copy.
1. Make sure all tests pass. If you add new functionality, add new tests.
1. Send a pull request, including a description of the fix (referencing an
   existing issue if there's one).

## Requesting new features

I'm open to ideas.

If you believe most termsvg users would benefit from implementing your idea
then feel free to open a GitHub issue. However, as this is an open-source
project maintained by just one person I simply can't implement all
of them due to limited resources. Please keep that in mind.

## Proposing features/changes (pull requests)

If you want to propose code change, either introducing a new feature or
improving an existing one, please first discuss it first. You
can simply open a separate issue for a discussion.

## Asking for help

GitHub issue tracker is not a support forum but I'll do my best.


================================================
FILE: LICENSE
================================================
                    GNU GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The GNU General Public License is a free, copyleft license for
software and other kinds of works.

  The licenses for most software and other practical works are designed
to take away your freedom to share and change the works.  By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.  We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors.  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

  To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights.  Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received.  You must make sure that they, too, receive
or can get the source code.  And you must show them these terms so they
know their rights.

  Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.

  For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software.  For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.

  Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so.  This is fundamentally incompatible with the aim of
protecting users' freedom to change the software.  The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable.  Therefore, we
have designed this version of the GPL to prohibit the practice for those
products.  If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.

  Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary.  To prevent this, the GPL assures that
patents cannot be used to render the program non-free.

  The precise terms and conditions for copying, distribution and
modification follow.

                       TERMS AND CONDITIONS

  0. Definitions.

  "This License" refers to version 3 of the GNU General Public License.

  "Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

  "The Program" refers to any copyrightable work licensed under this
License.  Each licensee is addressed as "you".  "Licensees" and
"recipients" may be individuals or organizations.

  To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy.  The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

  A "covered work" means either the unmodified Program or a work based
on the Program.

  To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy.  Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

  To "convey" a work means any kind of propagation that enables other
parties to make or receive copies.  Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

  An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License.  If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

  1. Source Code.

  The "source code" for a work means the preferred form of the work
for making modifications to it.  "Object code" means any non-source
form of a work.

  A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

  The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form.  A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

  The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities.  However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work.  For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

  The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

  The Corresponding Source for a work in source code form is that
same work.

  2. Basic Permissions.

  All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met.  This License explicitly affirms your unlimited
permission to run the unmodified Program.  The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work.  This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

  You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force.  You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright.  Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

  Conveying under any other circumstances is permitted solely under
the conditions stated below.  Sublicensing is not allowed; section 10
makes it unnecessary.

  3. Protecting Users' Legal Rights From Anti-Circumvention Law.

  No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

  When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

  4. Conveying Verbatim Copies.

  You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

  You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

  5. Conveying Modified Source Versions.

  You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

  A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit.  Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

  6. Conveying Non-Source Forms.

  You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

  A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

  A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling.  In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage.  For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product.  A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

  "Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source.  The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

  If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information.  But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

  The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed.  Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

  Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

  7. Additional Terms.

  "Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law.  If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

  When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it.  (Additional permissions may be written to require their own
removal in certain cases when you modify the work.)  You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

  Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

  All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10.  If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term.  If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

  If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

  Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

  8. Termination.

  You may not propagate or modify a covered work except as expressly
provided under this License.  Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

  However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

  Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

  Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License.  If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

  9. Acceptance Not Required for Having Copies.

  You are not required to accept this License in order to receive or
run a copy of the Program.  Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance.  However,
nothing other than this License grants you permission to propagate or
modify any covered work.  These actions infringe copyright if you do
not accept this License.  Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

  10. Automatic Licensing of Downstream Recipients.

  Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License.  You are not responsible
for enforcing compliance by third parties with this License.

  An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations.  If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

  You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License.  For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

  11. Patents.

  A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based.  The
work thus licensed is called the contributor's "contributor version".

  A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version.  For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

  Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

  In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement).  To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

  If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients.  "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

  If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

  A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License.  You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

  Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

  12. No Surrender of Others' Freedom.

  If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all.  For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

  13. Use with the GNU Affero General Public License.

  Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work.  The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

  14. Revised Versions of this License.

  The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

  Each version is given a distinguishing version number.  If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation.  If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.

  If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

  Later license versions may give you additional or different
permissions.  However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

  15. Disclaimer of Warranty.

  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. Limitation of Liability.

  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.

  17. Interpretation of Sections 15 and 16.

  If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

  If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

    <program>  Copyright (C) <year>  <name of author>
    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".

  You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.

  The GNU General Public License does not permit incorporating your program
into proprietary programs.  If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.  But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.


================================================
FILE: README.md
================================================
<div align="center">
<img src="assets/logo.png" width="150">

### Record, share and export your terminal as a animated SVG image.

</div>

<div align="center">
</br>

[![golangci-lint](https://github.com/MrMarble/termsvg/actions/workflows/golangci-lint.yml/badge.svg)](https://github.com/MrMarble/termsvg/actions/workflows/golangci-lint.yml)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)
![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/mrmarble/termsvg)
[![Go Reference](https://pkg.go.dev/badge/github.com/mrmarble/termsvg.svg)](https://pkg.go.dev/github.com/mrmarble/termsvg)

</div>

---

## Overview

TermSVG is an all in one cli tool to record, replay and export your terminal session to svg. It uses the same format as [asciinema](https://asciinema.org) so you can convert asciicast files to SVG or use the asciinema player with a TermSVG recording.

## Installation

### Manually

You can download a pre compiled binary directly from the [releases](https://github.com/mrmarble/termsvg/releases) for your OS/Architecture.

### Go cli

If you already have Go in your system you can use `go install`

```sh
go install github.com/mrmarble/termsvg/cmd/termsvg@latest # or target a specific version @v0.6.0
```

### Install script

I made an [installation script](scripts/install-termsvg.sh) that should download the latest available version corresponding to your OS and architecture. `sudo` is needed to copy the binary to `/usr/local/bin`

```sh
curl -sL https://raw.githubusercontent.com/MrMarble/termsvg/master/scripts/install-termsvg.sh | sudo -E bash -
# or with wget
wget -O - https://raw.githubusercontent.com/MrMarble/termsvg/master/scripts/install-termsvg.sh | sudo -E bash -
```

> [!NOTE]
> Windows binary does not have the `rec` command.

---

## Usage

termsvg is composed of multiple commands, similar to `git`, `docker` or
`asciinema`.

When you run `termsvg` with no arguments help message is displayed, listing
all available commands with their options.

### `rec <filename>`

**Record terminal session.**

By running `termsvg rec <filename>` you start a new recording session. The
command (process) that is recorded can be specified with `-c` option (see
below), and defaults to `$SHELL` which is what you want in most cases.

You can temporarily pause recording of terminal by pressing <kbd>Ctrl+P</kbd>.
This is useful when you want to execute some commands during the recording
session that should not be captured (e.g. pasting secrets). Resume by pressing
<kbd>Ctrl+P</kbd> again.

Recording finishes when you exit the shell (hit <kbd>Ctrl+D</kbd> or type
`exit`). If the recorded process is not a shell then recording finishes when
the process exits.

The resulting recording (called [asciicast](doc/asciicast-v2.md)) is saved to a local file. It can later be
replayed with `termsvg play <filename>` and/or exported to svg with `termsvg export -i <filename>`.

Available options:

- `-c, --command=<command>` - Specify command to record, defaults to $SHELL

### `play <filename>`

**Replay recorded asciicast in a terminal.**

This command replays given asciicast (as recorded by `rec` command) directly in
your terminal.

Playing from a local file:

```sh
termsvg play /path/to/asciicast.cast
```

Available options:

- `-i, --idle-time-limit=<sec>` - Limit replayed terminal inactivity to max `<sec>` seconds
- `-s, --speed=<factor>` - Playback speed (can be fractional)

> For the best playback experience it is recommended to run `termsvg play` in
> a terminal of dimensions not smaller than the one used for recording, as
> there's no "transcoding" of control sequences for new terminal size.

### `export <filename>`

**Export recorded asciicast to svg.**

This command exports given asciicast (as recorded by `rec` command) to svg.

Exporting from a local file:

```sh
termsvg export /path/to/asciicast.cast
```

Available options:

- `-o, --output=<file>` - Output svg to be created. Defaults to [input].svg
- `-m, --minify` - Minify svg using [Minify](https://github.com/tdewolff/minify)

## Example

Asciinema recording [inverted pendulum](https://asciinema.org/a/444816)
![inverted pendulum](examples/444816.svg)

More at the [examples](examples) folder

## Contributing

If you want to contribute to this project check out [CONTRIBUTING.md](CONTRIBUTING.md).

## License

All code is licensed under the GPL, v3 or later. See [LICENSE](LICENSE) file for details.

## ⭐ Stargazers

<a href="https://star-history.com/#mrmarble/termsvg&Date">
  <picture>
    <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=mrmarble/termsvg&type=Date&theme=dark" />
    <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=mrmarble/termsvg&type=Date" />
    <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=mrmarble/termsvg&type=Date" />
  </picture>
</a>


================================================
FILE: Taskfile.yml
================================================
# https://taskfile.dev

version: "3"

env:
  GO111MODULE: on
  GOPROXY: https://proxy.golang.org,direct

tasks:
  setup:
    desc: Prepare development environment
    cmds:
      - go install mvdan.cc/gofumpt@latest
      - go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
      - go install github.com/goreleaser/goreleaser@latest
      - pre-commit install
      - pre-commit install --hook-type commit-msg
      - go mod tidy

  build:
    desc: Build the binary
    sources:
      - ./**/*.go
    generates:
      - ./goreleaser
    cmds:
      - go build ./cmd/termsvg

  test:
    desc: Run tests
    env:
      LC_ALL: C
    vars:
      TEST_OPTIONS: '{{default "" .TEST_OPTIONS}}'
      SOURCE_FILES: '{{default "./..." .SOURCE_FILES}}'
      TEST_PATTERN: '{{default "." .TEST_PATTERN}}'
    cmds:
      - go test {{.TEST_OPTIONS}} -failfast -race -coverpkg=./... -covermode=atomic -coverprofile=coverage.txt {{.SOURCE_FILES}} -run {{.TEST_PATTERN}} -timeout=5m

  cover:
    desc: Open the cover tool
    cmds:
      - go tool cover -html=coverage.txt

  fmt:
    desc: gofumpt all code
    cmds:
      - gofumpt -w -l .

  lint:
    desc: Lint the code with golangci-lint
    cmds:
      - golangci-lint run --fix ./...

  ci:
    desc: Run all CI steps
    cmds:
      - task: lint
      - task: test
      - task: build

  default:
    desc: Runs the default tasks
    cmds:
      - task: ci

  release:
    desc: Create a new tag
    vars:
      NEXT:
        sh: svu n
    cmds:
      - git tag {{.NEXT}}
      - echo {{.NEXT}}
      - git push origin --tags

  examples:
    desc: Regenerate examples
    deps:
      - build
    sources:
      - ./examples/*.cast
      - ./termsvg
    generates:
      - ./examples/*.svg
    cmds:
      - ./termsvg export "examples/444816.cast" -m -n -o "examples/444816_borderless.svg"
      - for f in ./examples/*.cast; do ./termsvg export "$f" -m -o "${f%.cast}.svg"; done
      - ./scripts/update-filesize.sh
  goreleaser:
    desc: Run GoReleaser either in snapshot or release mode
    deps:
      - build
    vars:
      SNAPSHOT:
        sh: 'if [[ $GITHUB_REF != refs/tags/v* ]]; then echo "--snapshot"; fi'
    cmds:
      - goreleaser release --rm-dist {{.SNAPSHOT}}



================================================
FILE: cmd/termsvg/export/export.go
================================================
package export

import (
	"bytes"
	"context"
	"fmt"
	"log"
	"os"
	"path/filepath"
	"strings"
	"time"

	"github.com/mrmarble/termsvg/pkg/asciicast"
	"github.com/mrmarble/termsvg/pkg/ir"
	"github.com/mrmarble/termsvg/pkg/progress"
	"github.com/mrmarble/termsvg/pkg/renderer"
	"github.com/mrmarble/termsvg/pkg/renderer/gif"
	"github.com/mrmarble/termsvg/pkg/renderer/svg"
	"github.com/mrmarble/termsvg/pkg/renderer/webm"
	"github.com/mrmarble/termsvg/pkg/theme"
	"github.com/tdewolff/minify/v2"
	msvg "github.com/tdewolff/minify/v2/svg"
)

type Cmd struct {
	File     string        `arg:"" type:"existingfile" help:"Asciicast file to export"`
	Output   string        `short:"o" type:"path" help:"Output file path (default: <input>.<format>)"`
	Format   string        `short:"f" default:"svg" enum:"svg,gif,webm" help:"Output format (svg, gif, webm)"`
	Minify   bool          `short:"m" help:"Minify output (SVG only)"`
	NoWindow bool          `short:"n" help:"Don't render terminal window chrome"`
	NoCursor bool          `short:"C" help:"Don't render cursor"`
	Speed    float64       `short:"s" default:"1.0" help:"Playback speed multiplier"`
	MaxIdle  time.Duration `short:"i" default:"0" help:"Cap idle time between frames (0 = unlimited)"`
	Cols     int           `short:"c" default:"0" help:"Override columns (0 = use original)"`
	Rows     int           `short:"r" default:"0" help:"Override rows (0 = use original)"`
	Debug    bool          `short:"d" help:"Enable debug logging"`
	Theme    string        `short:"t" help:"Theme name (built-in) or path to theme JSON file"`
}

//nolint:funlen,gocognit // sequential export steps are clearer in one function
func (cmd *Cmd) Run() error {
	format := strings.ToLower(cmd.Format)

	output := cmd.Output
	if output == "" {
		output = cmd.File + "." + format
	}

	// Load cast file
	f, err := os.Open(filepath.Clean(cmd.File))
	if err != nil {
		return err
	}
	defer f.Close()

	cast, err := asciicast.Parse(f)
	if err != nil {
		return err
	}

	// Override dimensions if specified
	if cmd.Cols > 0 {
		cast.Header.Width = cmd.Cols
	}
	if cmd.Rows > 0 {
		cast.Header.Height = cmd.Rows
	}

	// Determine theme to use
	selectedTheme := theme.Default()
	themeSource := "default"

	if cmd.Theme != "" {
		// CLI flag takes priority
		t, err := theme.Load(cmd.Theme)
		if err != nil {
			fmt.Fprintf(os.Stderr, "Warning: failed to load theme %q: %v\n", cmd.Theme, err)
			fmt.Fprintf(os.Stderr, "Falling back to default theme\n")
		} else {
			selectedTheme = t
			themeSource = "CLI flag"
		}
	} else if cast.Header.Theme.Fg != "" {
		// Use theme from asciicast header
		t, err := theme.FromAsciinema("asciicast", cast.Header.Theme.Fg,
			cast.Header.Theme.Bg, cast.Header.Theme.Palette)
		if err != nil {
			if cmd.Debug {
				log.Printf("[Export] Invalid theme in asciicast header: %v", err)
			}
		} else {
			selectedTheme = t
			themeSource = "asciicast header"
		}
	}

	if cmd.Debug {
		log.Printf("[Export] Using theme from %s: %s", themeSource, selectedTheme.Name)
	}

	// Create progress reporter
	reporter, progressCh := progress.New()
	reporter.Start()

	// Process through IR
	procConfig := ir.DefaultProcessorConfig()
	procConfig.Speed = cmd.Speed
	procConfig.IdleTimeLimit = cmd.MaxIdle
	procConfig.Theme = selectedTheme
	procConfig.ProgressCh = progressCh

	proc := ir.NewProcessor(procConfig)
	rec, err := proc.Process(cast)
	if err != nil {
		close(progressCh)
		reporter.Wait()
		return err
	}

	// Create renderer based on format
	renderConfig := renderer.DefaultConfig()
	renderConfig.ShowWindow = !cmd.NoWindow
	renderConfig.ShowCursor = !cmd.NoCursor
	renderConfig.Minify = cmd.Minify
	renderConfig.Debug = cmd.Debug
	renderConfig.Theme = selectedTheme
	renderConfig.ProgressCh = progressCh

	var rdr renderer.Renderer
	switch format {
	case "gif":
		gifRenderer, err := gif.New(renderConfig)
		if err != nil {
			return fmt.Errorf("failed to create GIF renderer: %w", err)
		}
		rdr = gifRenderer
	case "svg":
		rdr = svg.New(renderConfig)
	case "webm":
		webmRenderer, err := webm.New(renderConfig)
		if err != nil {
			return fmt.Errorf("failed to create WebM renderer: %w", err)
		}
		rdr = webmRenderer
	default:
		return fmt.Errorf("unsupported format: %s", format)
	}

	// Create output file
	outFile, err := os.Create(output) //nolint:gosec // output path is from user CLI input
	if err != nil {
		return err
	}
	defer outFile.Close()

	// Render (with optional minification for SVG)
	if cmd.Minify && format == "svg" {
		var buf bytes.Buffer
		if err := rdr.Render(context.Background(), rec, &buf); err != nil {
			close(progressCh)
			reporter.Wait()
			return err
		}
		m := minify.New()
		m.AddFunc("image/svg+xml", msvg.Minify)
		var minified bytes.Buffer
		if err := m.Minify("image/svg+xml", &minified, &buf); err != nil {
			close(progressCh)
			reporter.Wait()
			return err
		}
		// Replace non-breaking spaces back to regular spaces after minification
		result := strings.ReplaceAll(minified.String(), "\u00A0", " ")
		if _, err := outFile.WriteString(result); err != nil {
			close(progressCh)
			reporter.Wait()
			return err
		}
	} else {
		if err := rdr.Render(context.Background(), rec, outFile); err != nil {
			close(progressCh)
			reporter.Wait()
			return err
		}
	}

	// Close progress channel and wait for reporter to finish
	close(progressCh)
	reporter.Wait()

	fmt.Printf("\nExported: %s\n", output)
	return nil
}


================================================
FILE: cmd/termsvg/main.go
================================================
package main

import (
	"fmt"

	"github.com/alecthomas/kong"
	"github.com/mrmarble/termsvg/cmd/termsvg/export"
	"github.com/mrmarble/termsvg/cmd/termsvg/play"
	"github.com/mrmarble/termsvg/cmd/termsvg/record"
)

type VersionFlag string

// Version info (populated by goreleaser)
var (
	version = "dev"
	commit  = "none"
	date    = "unknown"
)

func (v VersionFlag) Decode(_ *kong.DecodeContext) error { return nil }
func (v VersionFlag) IsBool() bool                       { return true }
func (v VersionFlag) BeforeApply(app *kong.Kong) error {
	fmt.Printf("termsvg %s (%s) built on %s\n", version, commit, date)
	app.Exit(0)
	return nil
}

func main() {
	var cli struct {
		Version VersionFlag `name:"version" help:"Print version information and quit"`

		Record record.Cmd `cmd:"" help:"Record a terminal session"`
		Play   play.Cmd   `cmd:"" help:"Play back a recorded terminal session"`
		Export export.Cmd `cmd:"" help:"Export asciicast to SVG"`
	}

	ctx := kong.Parse(&cli,
		kong.Name("termsvg"),
		kong.Description("Record, play, and export terminal sessions as SVG animations"),
		kong.UsageOnError(),
	)

	err := ctx.Run()
	ctx.FatalIfErrorf(err)
}


================================================
FILE: cmd/termsvg/main_windows.go
================================================
//go:build windows

package main

import (
	"fmt"

	"github.com/alecthomas/kong"
	"github.com/mrmarble/termsvg/cmd/termsvg/export"
	"github.com/mrmarble/termsvg/cmd/termsvg/play"
)

// Version info (populated by goreleaser)
var (
	version = "dev"
	commit  = "none"
	date    = "unknown"
)

type VersionFlag string

func (v VersionFlag) Decode(_ *kong.DecodeContext) error { return nil }
func (v VersionFlag) IsBool() bool                       { return true }
func (v VersionFlag) BeforeApply(app *kong.Kong) error {
	fmt.Printf("termsvg %s (%s) built on %s\n", version, commit, date)
	app.Exit(0)
	return nil
}

func main() {
	var cli struct {
		Version VersionFlag `name:"version" help:"Print version information and quit"`

		Play   play.Cmd   `cmd:"" help:"Play back a recorded terminal session"`
		Export export.Cmd `cmd:"" help:"Export asciicast to SVG"`
	}

	ctx := kong.Parse(&cli,
		kong.Name("termsvg"),
		kong.Description("Record, play, and export terminal sessions as SVG animations"),
		kong.UsageOnError(),
	)

	err := ctx.Run()
	ctx.FatalIfErrorf(err)
}


================================================
FILE: cmd/termsvg/play/play.go
================================================
package play

import (
	"fmt"
	"os"
	"path/filepath"
	"time"

	"github.com/mrmarble/termsvg/pkg/asciicast"
)

type Cmd struct {
	File    string        `arg:"" type:"existingfile" help:"Asciicast file to play"`
	Speed   float64       `short:"s" default:"1.0" help:"Playback speed multiplier"`
	MaxIdle time.Duration `short:"i" default:"0" help:"Cap idle time between frames (0 = unlimited)"`
}

func (cmd *Cmd) Run() error {
	f, err := os.Open(filepath.Clean(cmd.File))
	if err != nil {
		return err
	}
	defer f.Close()

	cast, err := asciicast.Parse(f)
	if err != nil {
		return err
	}

	return playback(cast, cmd.Speed, cmd.MaxIdle)
}

func playback(cast *asciicast.Cast, speed float64, maxIdle time.Duration) error {
	// Convert to relative time for idle capping
	cast.ToRelativeTime()

	// Cap idle time if specified
	if maxIdle > 0 {
		cast.CapRelativeTime(maxIdle.Seconds())
	}

	// Convert back to absolute and adjust speed
	cast.ToAbsoluteTime()
	cast.AdjustSpeed(speed)

	startTime := time.Now()

	for _, event := range cast.Events {
		targetTime := time.Duration(event.Time * float64(time.Second))
		elapsed := time.Since(startTime)

		if delay := targetTime - elapsed; delay > 0 {
			time.Sleep(delay)
		}

		fmt.Print(event.EventData)
	}

	return nil
}


================================================
FILE: cmd/termsvg/record/record.go
================================================
package record

import (
	"fmt"
	"io"
	"os"
	"os/exec"
	"os/signal"
	"strings"
	"sync/atomic"
	"syscall"
	"time"

	"github.com/creack/pty"
	"github.com/mrmarble/termsvg/pkg/asciicast"
	"golang.org/x/term"
)

type Cmd struct {
	File          string `arg:"" type:"path" help:"Filename/path to save the recording to"`
	Command       string `short:"c" optional:"" env:"SHELL" help:"Command to record (default: $SHELL)"`
	SkipFirstLine bool   `short:"s" help:"Skip the first line of recording"`
}

const readSize = 1024

func (cmd *Cmd) Run() error {
	fmt.Printf("Recording to %s\n", cmd.File)
	fmt.Println("Press Ctrl+D or type 'exit' to stop recording.")
	fmt.Println("Press Ctrl+P to pause/resume recording.")

	if cmd.SkipFirstLine {
		fmt.Println("Note: Skipping the first line of output.")
	}

	events, err := cmd.run()
	if err != nil {
		return err
	}

	if err := cmd.save(events); err != nil {
		return err
	}

	fmt.Printf("Recording saved: %s\n", cmd.File)
	return nil
}

func (cmd *Cmd) save(events []asciicast.Event) error {
	if len(events) == 0 {
		return fmt.Errorf("no events recorded")
	}

	cast := asciicast.New()

	width, height, err := term.GetSize(int(os.Stdout.Fd()))
	if err != nil {
		return fmt.Errorf("failed to get terminal size: %w", err)
	}

	cast.Header.Width = width
	cast.Header.Height = height
	cast.Header.Duration = events[len(events)-1].Time
	cast.Events = events
	cast.Compress()

	data, err := cast.Marshal()
	if err != nil {
		return fmt.Errorf("failed to marshal cast: %w", err)
	}

	if err := os.WriteFile(cmd.File, data, 0o600); err != nil {
		return fmt.Errorf("failed to write file: %w", err)
	}

	return nil
}

//nolint:gocognit,funlen // PTY handling requires sequential state management
func (cmd *Cmd) run() ([]asciicast.Event, error) {
	// Create command to run
	c := exec.Command("sh", "-c", cmd.Command) //nolint:gosec // command is from user CLI input

	// Start the command with a PTY
	ptmx, err := pty.Start(c)
	if err != nil {
		return nil, fmt.Errorf("failed to start pty: %w", err)
	}
	defer ptmx.Close()

	// Handle PTY size changes
	ch := handlePtySize(ptmx)
	defer func() {
		signal.Stop(ch)
		close(ch)
	}()

	// Set stdin to raw mode
	oldState, err := term.MakeRaw(int(os.Stdin.Fd()))
	if err != nil {
		return nil, fmt.Errorf("failed to set raw mode: %w", err)
	}
	defer term.Restore(int(os.Stdin.Fd()), oldState)

	// Copy stdin to the PTY with pause support
	var paused atomic.Bool
	go func() {
		buf := make([]byte, readSize)
		for {
			n, err := os.Stdin.Read(buf)
			if err != nil {
				return
			}

			for i := 0; i < n; i++ {
				// Check for Ctrl+P (0x10) to toggle pause
				if buf[i] == 0x10 {
					paused.Store(!paused.Load())
					continue
				}
				// Write byte to PTY
				_, _ = ptmx.Write(buf[i : i+1])
			}
		}
	}()

	// Read from PTY and record events
	events := make([]asciicast.Event, 0, 1024)
	p := make([]byte, readSize)
	baseTime := time.Now().UnixMicro()

	startTriggered := !cmd.SkipFirstLine
	pauseStartTime := int64(0)
	totalPausedTime := int64(0)

	for {
		n, err := ptmx.Read(p)
		if err != nil {
			if err == io.EOF && n > 0 {
				_, _ = os.Stdout.Write(p[:n])
				if !paused.Load() && startTriggered {
					events = append(events, asciicast.Event{
						Time:      float64(time.Now().UnixMicro()-baseTime-totalPausedTime) / float64(time.Millisecond),
						EventType: asciicast.Output,
						EventData: string(p[:n]),
					})
				}
			}
			break
		}

		// Echo to stdout
		_, _ = os.Stdout.Write(p[:n])

		// Handle pause state
		if paused.Load() {
			if pauseStartTime == 0 {
				pauseStartTime = time.Now().UnixMicro()
			}
			continue
		} else if pauseStartTime != 0 {
			totalPausedTime += time.Now().UnixMicro() - pauseStartTime
			pauseStartTime = 0
		}

		// Skip first line if requested
		if !startTriggered {
			if strings.Contains(string(p[:n]), "\n") {
				startTriggered = true
				baseTime = time.Now().UnixMicro()
			}
			continue
		}

		// Record event
		events = append(events, asciicast.Event{
			Time:      float64(time.Now().UnixMicro()-baseTime-totalPausedTime) / float64(time.Millisecond),
			EventType: asciicast.Output,
			EventData: string(p[:n]),
		})
	}

	return events, nil
}

func handlePtySize(ptmx *os.File) chan os.Signal {
	ch := make(chan os.Signal, 1)
	signal.Notify(ch, syscall.SIGWINCH)

	go func() {
		for range ch {
			_ = pty.InheritSize(os.Stdin, ptmx)
		}
	}()

	// Initial resize
	ch <- syscall.SIGWINCH

	return ch
}


================================================
FILE: cmd/themegen/main.go
================================================
// Theme generator tool for termsvg.
// Reads JSON theme files from themes/ directory and generates Go code.
package main

import (
	"encoding/json"
	"fmt"
	"os"
	"path/filepath"
	"strings"
	"text/template"
	"time"

	"golang.org/x/text/cases"
	"golang.org/x/text/language"
)

// ThemeData represents the JSON structure of a theme file.
type ThemeData struct {
	Fg      string `json:"fg"`
	Bg      string `json:"bg"`
	Palette string `json:"palette"`
}

// ThemeInfo holds parsed theme data for code generation.
type ThemeInfo struct {
	Name             string
	VarName          string
	Fg               string
	Bg               string
	PaletteOverrides string
	WindowBg         string
}

// TemplateData holds data for the builtin theme template.
type TemplateData struct {
	GeneratedAt string
	Themes      []ThemeInfo
}

const (
	defaultRGBA      = "{R: 0, G: 0, B: 0, A: 255}"
	defaultRGBAPlain = "R: 0, G: 0, B: 0, A: 255"
)

const builtinTemplate = `// Code generated by themegen. DO NOT EDIT.
// Generated at: {{ .GeneratedAt }}

package theme

import (
	"image/color"

	termcolor "github.com/mrmarble/termsvg/pkg/color"
)

// builtinThemes is a registry of all built-in themes.
var builtinThemes = map[string]Theme{
{{- range .Themes }}
	"{{ .Name }}": {{ .VarName }},
{{- end }}
}

{{ range .Themes }}
// {{ .VarName }} is the "{{ .Name }}" theme.
var {{ .VarName }} = Theme{
	Name:       "{{ .Name }}",
	Foreground: color.RGBA{ {{ .Fg }} },
	Background: color.RGBA{ {{ .Bg }} },
	Palette:    {{ .VarName }}Palette,
	WindowBackground: color.RGBA{ {{ .WindowBg }} },
	WindowButtons: [3]color.RGBA{
		{R: 255, G: 95, B: 86, A: 255},  // Close
		{R: 255, G: 189, B: 46, A: 255}, // Minimize
		{R: 24, G: 193, B: 50, A: 255},  // Maximize
	},
}

// {{ .VarName }}Palette is the color palette for the "{{ .Name }}" theme.
// It extends the standard xterm palette with custom colors for the first 16 ANSI colors.
var {{ .VarName }}Palette = func() termcolor.Palette {
	p := termcolor.Standard()
	{{ .PaletteOverrides }}
	return p
}()
{{ end }}
`

// colorToGo converts a hex color to Go RGBA struct format.
//
//nolint:dupl // colorToGo and hexToRGBA have slightly different return formats
func colorToGo(hex string) string {
	// Remove # prefix
	hex = strings.TrimPrefix(hex, "#")

	// Handle short form (RGB -> RRGGBB)
	if len(hex) == 3 {
		hex = string(hex[0]) + string(hex[0]) +
			string(hex[1]) + string(hex[1]) +
			string(hex[2]) + string(hex[2])
	}

	if len(hex) != 6 {
		return defaultRGBA
	}

	// Parse hex components
	var r, g, b int
	if _, err := fmt.Sscanf(hex[0:2], "%x", &r); err != nil {
		return defaultRGBA
	}
	if _, err := fmt.Sscanf(hex[2:4], "%x", &g); err != nil {
		return defaultRGBA
	}
	if _, err := fmt.Sscanf(hex[4:6], "%x", &b); err != nil {
		return defaultRGBA
	}

	return fmt.Sprintf("{R: %d, G: %d, B: %d, A: 255}", r, g, b)
}

//nolint:funlen // sequential theme generation steps are clearer in one function
func main() {
	// Find themes directory
	themesDir := "themes"
	if _, err := os.Stat(themesDir); os.IsNotExist(err) {
		// Try from pkg/theme directory
		themesDir = "../../themes"
		if _, err := os.Stat(themesDir); os.IsNotExist(err) {
			fmt.Fprintf(os.Stderr, "Error: themes directory not found\n")
			os.Exit(1)
		}
	}

	// Read all theme files
	entries, err := os.ReadDir(themesDir)
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error reading themes directory: %v\n", err)
		os.Exit(1)
	}

	themes := make([]ThemeInfo, 0, len(entries))
	for _, entry := range entries {
		if entry.IsDir() || !strings.HasSuffix(entry.Name(), ".json") {
			continue
		}

		theme, err := parseThemeFile(filepath.Join(themesDir, entry.Name()))
		if err != nil {
			fmt.Fprintf(os.Stderr, "Warning: failed to parse %s: %v\n", entry.Name(), err)
			continue
		}

		themes = append(themes, theme)
	}

	if len(themes) == 0 {
		fmt.Fprintf(os.Stderr, "Error: no valid theme files found\n")
		os.Exit(1)
	}

	// Generate output file
	outputFile := "pkg/theme/builtin.go"
	if _, err := os.Stat("pkg/theme"); os.IsNotExist(err) {
		outputFile = "builtin.go"
	}

	tmpl, err := template.New("builtin").Parse(builtinTemplate)
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error parsing template: %v\n", err)
		os.Exit(1)
	}

	file, err := os.Create(outputFile)
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error creating output file: %v\n", err)
		os.Exit(1)
	}
	defer file.Close()

	data := TemplateData{
		GeneratedAt: time.Now().Format(time.RFC3339),
		Themes:      themes,
	}

	if err := tmpl.Execute(file, data); err != nil {
		fmt.Fprintf(os.Stderr, "Error executing template: %v\n", err)
		//nolint:gocritic // exitAfterDefer is acceptable here - program is terminating
		os.Exit(1)
	}

	fmt.Printf("Generated %d themes in %s\n", len(themes), outputFile)
}

func parseThemeFile(path string) (ThemeInfo, error) {
	data, err := os.ReadFile(path) //nolint:gosec // path is validated theme file
	if err != nil {
		return ThemeInfo{}, err
	}

	var themeData ThemeData
	if err := json.Unmarshal(data, &themeData); err != nil {
		return ThemeInfo{}, err
	}

	// Validate palette has 16 colors
	colors := strings.Split(themeData.Palette, ":")
	if len(colors) != 16 {
		return ThemeInfo{}, fmt.Errorf("palette must have 16 colors, got %d", len(colors))
	}

	// Get theme name from filename
	name := strings.TrimSuffix(filepath.Base(path), ".json")

	// Create variable name (camelCase)
	varName := toVarName(name)

	// Parse colors (foreground/background use field format)
	fg := hexToRGBA(themeData.Fg)
	bg := hexToRGBA(themeData.Bg)

	// Build palette overrides (only first 16 colors)
	paletteOverrides := make([]string, 0, len(colors))
	for i, c := range colors {
		paletteOverrides = append(paletteOverrides, fmt.Sprintf("p[%d] = color.RGBA%s", i, colorToGo(c)))
	}

	// Window background uses the theme's bg property (terminal background)
	windowBg := bg

	return ThemeInfo{
		Name:             name,
		VarName:          varName,
		Fg:               fg,
		Bg:               bg,
		PaletteOverrides: strings.Join(paletteOverrides, "\n\t"),
		WindowBg:         windowBg,
	}, nil
}

func toVarName(name string) string {
	// Convert kebab-case to CamelCase
	parts := strings.Split(name, "-")
	caser := cases.Title(language.English)
	for i, part := range parts {
		parts[i] = caser.String(part)
	}
	return strings.Join(parts, "")
}

//nolint:dupl // hexToRGBA has different return format than colorToGo
func hexToRGBA(hex string) string {
	// Remove # prefix
	hex = strings.TrimPrefix(hex, "#")

	// Handle short form (RGB -> RRGGBB)
	if len(hex) == 3 {
		hex = string(hex[0]) + string(hex[0]) +
			string(hex[1]) + string(hex[1]) +
			string(hex[2]) + string(hex[2])
	}

	if len(hex) != 6 {
		return defaultRGBAPlain
	}

	// Parse hex components
	var r, g, b int
	if _, err := fmt.Sscanf(hex[0:2], "%x", &r); err != nil {
		return defaultRGBAPlain
	}
	if _, err := fmt.Sscanf(hex[2:4], "%x", &g); err != nil {
		return defaultRGBAPlain
	}
	if _, err := fmt.Sscanf(hex[4:6], "%x", &b); err != nil {
		return defaultRGBAPlain
	}

	return fmt.Sprintf("R: %d, G: %d, B: %d, A: 255", r, g, b)
}


================================================
FILE: examples/256colors.cast
================================================
{"version":2,"width":120,"height":42,"timestamp":1647092161,"duration":10.296995,"env":{"SHELL":"/usr/bin/zsh","TERM":"xterm-256color"}}
[0.442473,"o","\u001b[1m\u001b[7m%\u001b[27m\u001b[1m\u001b[0m                                                                                                                       \r \r"]
[0.442493,"o","\u001b]2;mrmarble@founder:~/repos/termsvg\u0007"]
[0.442515,"o","\u001b]1;~/repos/termsvg\u0007"]
[0.465364,"o","\r\u001b[0m\u001b[27m\u001b[24m\u001b[J\u001b[01;32m➜  \u001b[36mtermsvg\u001b[00m \u001b[01;34mgit:(\u001b[31mmaster\u001b[34m) \u001b[33m✗\u001b[00m \u001b[K"]
[0.465466,"o","\u001b[?1h\u001b="]
[0.465774,"o","\u001b[?2004h"]
[1.921296,"o","\u001b[4mc\u001b[24m"]
[1.922085,"o","\u0008\u001b[4mc\u001b[24m\u001b[90md repos/termsvg\u001b[39m\u001b[15D"]
[2.172367,"o","\u0008\u001b[24m\u001b[1m\u001b[31mc\u001b[1m\u001b[31mu\u001b[0m\u001b[39m\u001b[39m \u001b[39m \u001b[39m \u001b[39m \u001b[39m \u001b[39m \u001b[39m \u001b[39m \u001b[39m \u001b[39m \u001b[39m \u001b[39m \u001b[39m \u001b[39m \u001b[14D"]
[2.172859,"o","\u001b[90mrl -s https://gist.githubusercontent.com/WoLpH/8b6f697ecc06318004728b8c0127d9b3/raw/colortes\u001b[90mt\u001b[90m.py | python3\u001b[39m\u001b[K\u001b[A\u001b[14C"]
[2.722262,"o","\u0008\u0008\u001b[1m\u001b[31mc\u001b[1m\u001b[31mu\u001b[1m\u001b[31mr\u001b[0m\u001b[39m"]
[2.895835,"o","\u0008\u0008\u0008\u001b[0m\u001b[32mc\u001b[0m\u001b[32mu\u001b[0m\u001b[32mr\u001b[32ml\u001b[39m"]
[3.095827,"o","\u001b[39m "]
[3.446299,"o","\u001b[39m-"]
[3.846085,"o","\u001b[39ms"]
[4.947344,"o","\u001b[39m \u001b[39mh\u001b[39mt\u001b[39mt\u001b[39mp\u001b[39ms\u001b[39m:\u001b[39m/\u001b[39m/\u001b[39mg\u001b[39mi\u001b[39ms\u001b[39mt\u001b[39m.\u001b[39mg\u001b[39mi\u001b[39mt\u001b[39mh\u001b[39mu\u001b[39mb\u001b[39mu\u001b[39ms\u001b[39me\u001b[39mr\u001b[39mc\u001b[39mo\u001b[39mn\u001b[39mt\u001b[39me\u001b[39mn\u001b[39mt\u001b[39m.\u001b[39mc\u001b[39mo\u001b[39mm\u001b[39m/\u001b[39mW\u001b[39mo\u001b[39mL\u001b[39mp\u001b[39mH\u001b[39m/\u001b[39m8\u001b[39mb\u001b[39m6\u001b[39mf\u001b[39m6\u001b[39m9\u001b[39m7\u001b[39me\u001b[39mc\u001b[39mc\u001b[39m0\u001b[39m6\u001b[39m3\u001b[39m1\u001b[39m8\u001b[39m0\u001b[39m0\u001b[39m4\u001b[39m7\u001b[39m2\u001b[39m8\u001b[39mb\u001b[39m8\u001b[39mc\u001b[39m0\u001b[39m1\u001b[39m2\u001b[39m7\u001b[39md\u001b[39m9\u001b[39mb\u001b[39m3\u001b[39m/\u001b[39mr\u001b[39ma\u001b[39mw\u001b[39m/\u001b[39mc\u001b[39mo\u001b[39ml\u001b[39mo\u001b[39mr\u001b[39mt\u001b[39me\u001b[39mst\u001b[39m.\u001b[39mp\u001b[39my\u001b[39m \u001b[39m|\u001b[39m \u001b[32mp\u001b[32my\u001b[32mt\u001b[32mh\u001b[32mo\u001b[32mn\u001b[32m3\u001b[39m"]
[7.195759,"o","\u001b[?1l\u001b\u003e"]
[7.197583,"o","\u001b[?2004l\r\r\n"]
[7.197885,"o","\u001b]2;curl -s  | python3\u0007\u001b]1;curl\u0007"]
[7.262589,"o","\u001b[38;5;255m\u001b[48;5;16m   16  00/00/00   \u001b[0m \u001b[38;5;255m\u001b[48;5;17m   17  00/00/5F   \u001b[0m \u001b[38;5;255m\u001b[48;5;18m   18  00/00/87   \u001b[0m \u001b[38;5;255m\u001b[48;5;19m   19  00/00/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;20m   20  00/00/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;21m   21  00/00/FF   \u001b[0m\r\n\u001b[38;5;255m\u001b[48;5;22m   22  00/5F/00   \u001b[0m \u001b[38;5;255m\u001b[48;5;23m   23  00/5F/5F   \u001b[0m \u001b[38;5;255m\u001b[48;5;24m   24  00/5F/87   \u001b[0m \u001b[38;5;255m\u001b[48;5;25m   25  00/5F/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;26m   26  00/5F/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;27m   27  00/5F/FF   \u001b[0m\r\n"]
[7.262671,"o","\u001b[38;5;255m\u001b[48;5;28m   28  00/87/00   \u001b[0m \u001b[38;5;255m\u001b[48;5;29m   29  00/87/5F   \u001b[0m \u001b[38;5;255m\u001b[48;5;30m   30  00/87/87   \u001b[0m \u001b[38;5;255m\u001b[48;5;31m   31  00/87/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;32m   32  00/87/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;33m   33  00/87/FF   \u001b[0m\r\n"]
[7.262723,"o","\u001b[38;5;255m\u001b[48;5;34m   34  00/AF/00   \u001b[0m \u001b[38;5;255m\u001b[48;5;35m   35  00/AF/5F   \u001b[0m \u001b[38;5;255m\u001b[48;5;36m   36  00/AF/87   \u001b[0m \u001b[38;5;255m\u001b[48;5;37m   37  00/AF/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;38m   38  00/AF/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;39m   39  00/AF/FF   \u001b[0m\r\n\u001b[38;5;0m\u001b[48;5;40m   40  00/D7/00   \u001b[0m \u001b[38;5;0m\u001b[48;5;41m   41  00/D7/5F   \u001b[0m \u001b[38;5;0m\u001b[48;5;42m   42  00/D7/87   \u001b[0m \u001b[38;5;0m\u001b[48;5;43m   43  00/D7/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;44m   44  00/D7/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;45m   45  00/D7/FF   \u001b[0m\r\n"]
[7.262792,"o","\u001b[38;5;0m\u001b[48;5;46m   46  00/FF/00   \u001b[0m \u001b[38;5;0m\u001b[48;5;47m   47  00/FF/5F   \u001b[0m \u001b[38;5;0m\u001b[48;5;48m   48  00/FF/87   \u001b[0m \u001b[38;5;0m\u001b[48;5;49m   49  00/FF/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;50m   50  00/FF/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;51m   51  00/FF/FF   \u001b[0m\r\n\u001b[38;5;255m\u001b[48;5;52m   52  5F/00/00   \u001b[0m \u001b[38;5;255m\u001b[48;5;53m   53  5F/00/5F   \u001b[0m \u001b[38;5;255m\u001b[48;5;54m   54  5F/00/87   \u001b[0m \u001b[38;5;255m\u001b[48;5;55m   55  5F/00/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;56m   56  5F/00/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;57m   57  5F/00/FF   \u001b[0m\r\n"]
[7.262874,"o","\u001b[38;5;255m\u001b[48;5;58m   58  5F/5F/00   \u001b[0m \u001b[38;5;255m\u001b[48;5;59m   59  5F/5F/5F   \u001b[0m \u001b[38;5;255m\u001b[48;5;60m   60  5F/5F/87   \u001b[0m \u001b[38;5;255m\u001b[48;5;61m   61  5F/5F/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;62m   62  5F/5F/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;63m   63  5F/5F/FF   \u001b[0m\r\n\u001b[38;5;255m\u001b[48;5;64m   64  5F/87/00   \u001b[0m \u001b[38;5;255m\u001b[48;5;65m   65  5F/87/5F   \u001b[0m \u001b[38;5;255m\u001b[48;5;66m   66  5F/87/87   \u001b[0m \u001b[38;5;255m\u001b[48;5;67m   67  5F/87/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;68m   68  5F/87/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;69m   69  5F/87/FF   \u001b[0m\r\n"]
[7.262972,"o","\u001b[38;5;255m\u001b[48;5;70m   70  5F/AF/00   \u001b[0m \u001b[38;5;255m\u001b[48;5;71m   71  5F/AF/5F   \u001b[0m \u001b[38;5;255m\u001b[48;5;72m   72  5F/AF/87   \u001b[0m \u001b[38;5;255m\u001b[48;5;73m   73  5F/AF/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;74m   74  5F/AF/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;75m   75  5F/AF/FF   \u001b[0m\r\n"]
[7.263053,"o","\u001b[38;5;0m\u001b[48;5;76m   76  5F/D7/00   \u001b[0m \u001b[38;5;0m\u001b[48;5;77m   77  5F/D7/5F   \u001b[0m \u001b[38;5;0m\u001b[48;5;78m   78  5F/D7/87   \u001b[0m \u001b[38;5;0m\u001b[48;5;79m   79  5F/D7/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;80m   80  5F/D7/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;81m   81  5F/D7/FF   \u001b[0m\r\n"]
[7.263107,"o","\u001b[38;5;0m\u001b[48;5;82m   82  5F/FF/00   \u001b[0m \u001b[38;5;0m\u001b[48;5;83m   83  5F/FF/5F   \u001b[0m \u001b[38;5;0m\u001b[48;5;84m   84  5F/FF/87   \u001b[0m \u001b[38;5;0m\u001b[48;5;85m   85  5F/FF/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;86m   86  5F/FF/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;87m   87  5F/FF/FF   \u001b[0m\r\n"]
[7.263188,"o","\u001b[38;5;255m\u001b[48;5;88m   88  87/00/00   \u001b[0m \u001b[38;5;255m\u001b[48;5;89m   89  87/00/5F   \u001b[0m \u001b[38;5;255m\u001b[48;5;90m   90  87/00/87   \u001b[0m \u001b[38;5;255m\u001b[48;5;91m   91  87/00/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;92m   92  87/00/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;93m   93  87/00/FF   \u001b[0m\r\n\u001b[38;5;255m\u001b[48;5;94m   94  87/5F/00   \u001b[0m \u001b[38;5;255m\u001b[48;5;95m   95  87/5F/5F   \u001b[0m \u001b[38;5;255m\u001b[48;5;96m   96  87/5F/87   \u001b[0m \u001b[38;5;255m\u001b[48;5;97m   97  87/5F/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;98m   98  87/5F/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;99m   99  87/5F/FF   \u001b[0m\r\n"]
[7.263279,"o","\u001b[38;5;255m\u001b[48;5;100m   100 87/87/00   \u001b[0m \u001b[38;5;255m\u001b[48;5;101m   101 87/87/5F   \u001b[0m \u001b[38;5;255m\u001b[48;5;102m   102 87/87/87   \u001b[0m \u001b[38;5;255m\u001b[48;5;103m   103 87/87/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;104m   104 87/87/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;105m   105 87/87/FF   \u001b[0m\r\n\u001b[38;5;255m\u001b[48;5;106m   106 87/AF/00   \u001b[0m \u001b[38;5;255m\u001b[48;5;107m   107 87/AF/5F   \u001b[0m \u001b[38;5;255m\u001b[48;5;108m   108 87/AF/87   \u001b[0m \u001b[38;5;255m\u001b[48;5;109m   109 87/AF/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;110m   110 87/AF/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;111m   111 87/AF/FF   \u001b[0m\r\n"]
[7.263351,"o","\u001b[38;5;0m\u001b[48;5;112m   112 87/D7/00   \u001b[0m \u001b[38;5;0m\u001b[48;5;113m   113 87/D7/5F   \u001b[0m \u001b[38;5;0m\u001b[48;5;114m   114 87/D7/87   \u001b[0m \u001b[38;5;0m\u001b[48;5;115m   115 87/D7/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;116m   116 87/D7/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;117m   117 87/D7/FF   \u001b[0m\r\n"]
[7.263362,"o","\u001b[38;5;0m\u001b[48;5;118m   118 87/FF/00   \u001b[0m \u001b[38;5;0m\u001b[48;5;119m   119 87/FF/5F   \u001b[0m \u001b[38;5;0m\u001b[48;5;120m   120 87/FF/87   \u001b[0m \u001b[38;5;0m\u001b[48;5;121m   121 87/FF/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;122m   122 87/FF/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;123m   123 87/FF/FF   \u001b[0m\r\n"]
[7.263457,"o","\u001b[38;5;255m\u001b[48;5;124m   124 AF/00/00   \u001b[0m \u001b[38;5;255m\u001b[48;5;125m   125 AF/00/5F   \u001b[0m \u001b[38;5;255m\u001b[48;5;126m   126 AF/00/87   \u001b[0m \u001b[38;5;255m\u001b[48;5;127m   127 AF/00/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;128m   128 AF/00/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;129m   129 AF/00/FF   \u001b[0m\r\n"]
[7.263529,"o","\u001b[38;5;255m\u001b[48;5;130m   130 AF/5F/00   \u001b[0m \u001b[38;5;255m\u001b[48;5;131m   131 AF/5F/5F   \u001b[0m \u001b[38;5;255m\u001b[48;5;132m   132 AF/5F/87   \u001b[0m \u001b[38;5;255m\u001b[48;5;133m   133 AF/5F/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;134m   134 AF/5F/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;135m   135 AF/5F/FF   \u001b[0m\r\n"]
[7.263542,"o","\u001b[38;5;255m\u001b[48;5;136m   136 AF/87/00   \u001b[0m \u001b[38;5;255m\u001b[48;5;137m   137 AF/87/5F   \u001b[0m \u001b[38;5;255m\u001b[48;5;138m   138 AF/87/87   \u001b[0m \u001b[38;5;255m\u001b[48;5;139m   139 AF/87/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;140m   140 AF/87/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;141m   141 AF/87/FF   \u001b[0m\r\n"]
[7.263645,"o","\u001b[38;5;255m\u001b[48;5;142m   142 AF/AF/00   \u001b[0m \u001b[38;5;255m\u001b[48;5;143m   143 AF/AF/5F   \u001b[0m \u001b[38;5;255m\u001b[48;5;144m   144 AF/AF/87   \u001b[0m \u001b[38;5;255m\u001b[48;5;145m   145 AF/AF/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;146m   146 AF/AF/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;147m   147 AF/AF/FF   \u001b[0m\r\n"]
[7.26375,"o","\u001b[38;5;0m\u001b[48;5;148m   148 AF/D7/00   \u001b[0m \u001b[38;5;0m\u001b[48;5;149m   149 AF/D7/5F   \u001b[0m \u001b[38;5;0m\u001b[48;5;150m   150 AF/D7/87   \u001b[0m \u001b[38;5;0m\u001b[48;5;151m   151 AF/D7/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;152m   152 AF/D7/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;153m   153 AF/D7/FF   \u001b[0m\r\n\u001b[38;5;0m\u001b[48;5;154m   154 AF/FF/00   \u001b[0m \u001b[38;5;0m\u001b[48;5;155m   155 AF/FF/5F   \u001b[0m \u001b[38;5;0m\u001b[48;5;156m   156 AF/FF/87   \u001b[0m \u001b[38;5;0m\u001b[48;5;157m   157 AF/FF/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;158m   158 AF/FF/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;159m   159 AF/FF/FF   \u001b[0m\r\n"]
[7.263856,"o","\u001b[38;5;0m\u001b[48;5;160m   160 D7/00/00   \u001b[0m \u001b[38;5;0m\u001b[48;5;161m   161 D7/00/5F   \u001b[0m \u001b[38;5;0m\u001b[48;5;162m   162 D7/00/87   \u001b[0m \u001b[38;5;0m\u001b[48;5;163m   163 D7/00/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;164m   164 D7/00/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;165m   165 D7/00/FF   \u001b[0m\r\n\u001b[38;5;0m\u001b[48;5;166m   166 D7/5F/00   \u001b[0m \u001b[38;5;0m\u001b[48;5;167m   167 D7/5F/5F   \u001b[0m \u001b[38;5;0m\u001b[48;5;168m   168 D7/5F/87   \u001b[0m \u001b[38;5;0m\u001b[48;5;169m   169 D7/5F/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;170m   170 D7/5F/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;171m   171 D7/5F/FF   \u001b[0m\r\n"]
[7.26396,"o","\u001b[38;5;0m\u001b[48;5;172m   172 D7/87/00   \u001b[0m \u001b[38;5;0m\u001b[48;5;173m   173 D7/87/5F   \u001b[0m \u001b[38;5;0m\u001b[48;5;174m   174 D7/87/87   \u001b[0m \u001b[38;5;0m\u001b[48;5;175m   175 D7/87/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;176m   176 D7/87/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;177m   177 D7/87/FF   \u001b[0m\r\n\u001b[38;5;0m\u001b[48;5;178m   178 D7/AF/00   \u001b[0m \u001b[38;5;0m\u001b[48;5;179m   179 D7/AF/5F   \u001b[0m \u001b[38;5;0m\u001b[48;5;180m   180 D7/AF/87   \u001b[0m \u001b[38;5;0m\u001b[48;5;181m   181 D7/AF/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;182m   182 D7/AF/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;183m   183 D7/AF/FF   \u001b[0m\r\n"]
[7.264044,"o","\u001b[38;5;0m\u001b[48;5;184m   184 D7/D7/00   \u001b[0m \u001b[38;5;0m\u001b[48;5;185m   185 D7/D7/5F   \u001b[0m \u001b[38;5;0m\u001b[48;5;186m   186 D7/D7/87   \u001b[0m \u001b[38;5;0m\u001b[48;5;187m   187 D7/D7/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;188m   188 D7/D7/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;189m   189 D7/D7/FF   \u001b[0m\r\n\u001b[38;5;0m\u001b[48;5;190m   190 D7/FF/00   \u001b[0m \u001b[38;5;0m\u001b[48;5;191m   191 D7/FF/5F   \u001b[0m \u001b[38;5;0m\u001b[48;5;192m   192 D7/FF/87   \u001b[0m \u001b[38;5;0m\u001b[48;5;193m   193 D7/FF/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;194m   194 D7/FF/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;195m   195 D7/FF/FF   \u001b[0m\r\n"]
[7.264142,"o","\u001b[38;5;0m\u001b[48;5;196m   196 FF/00/00   \u001b[0m \u001b[38;5;0m\u001b[48;5;197m   197 FF/00/5F   \u001b[0m \u001b[38;5;0m\u001b[48;5;198m   198 FF/00/87   \u001b[0m \u001b[38;5;0m\u001b[48;5;199m   199 FF/00/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;200m   200 FF/00/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;201m   201 FF/00/FF   \u001b[0m\r\n"]
[7.264232,"o","\u001b[38;5;0m\u001b[48;5;202m   202 FF/5F/00   \u001b[0m \u001b[38;5;0m\u001b[48;5;203m   203 FF/5F/5F   \u001b[0m \u001b[38;5;0m\u001b[48;5;204m   204 FF/5F/87   \u001b[0m \u001b[38;5;0m\u001b[48;5;205m   205 FF/5F/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;206m   206 FF/5F/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;207m   207 FF/5F/FF   \u001b[0m\r\n\u001b[38;5;0m\u001b[48;5;208m   208 FF/87/00   \u001b[0m \u001b[38;5;0m\u001b[48;5;209m   209 FF/87/5F   \u001b[0m \u001b[38;5;0m\u001b[48;5;210m   210 FF/87/87   \u001b[0m \u001b[38;5;0m\u001b[48;5;211m   211 FF/87/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;212m   212 FF/87/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;213m   213 FF/87/FF   \u001b[0m\r\n"]
[7.2643,"o","\u001b[38;5;0m\u001b[48;5;214m   214 FF/AF/00   \u001b[0m \u001b[38;5;0m\u001b[48;5;215m   215 FF/AF/5F   \u001b[0m \u001b[38;5;0m\u001b[48;5;216m   216 FF/AF/87   \u001b[0m \u001b[38;5;0m\u001b[48;5;217m   217 FF/AF/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;218m   218 FF/AF/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;219m   219 FF/AF/FF   \u001b[0m\r\n"]
[7.264313,"o","\u001b[38;5;0m\u001b[48;5;220m   220 FF/D7/00   \u001b[0m \u001b[38;5;0m\u001b[48;5;221m   221 FF/D7/5F   \u001b[0m \u001b[38;5;0m\u001b[48;5;222m   222 FF/D7/87   \u001b[0m \u001b[38;5;0m\u001b[48;5;223m   223 FF/D7/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;224m   224 FF/D7/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;225m   225 FF/D7/FF   \u001b[0m\r\n"]
[7.264407,"o","\u001b[38;5;0m\u001b[48;5;226m   226 FF/FF/00   \u001b[0m \u001b[38;5;0m\u001b[48;5;227m   227 FF/FF/5F   \u001b[0m \u001b[38;5;0m\u001b[48;5;228m   228 FF/FF/87   \u001b[0m \u001b[38;5;0m\u001b[48;5;229m   229 FF/FF/AF   \u001b[0m \u001b[38;5;0m\u001b[48;5;230m   230 FF/FF/D7   \u001b[0m \u001b[38;5;0m\u001b[48;5;231m   231 FF/FF/FF   \u001b[0m\r\n"]
[7.264487,"o","\u001b[38;5;255m\u001b[48;5;232m   232 08/08/08   \u001b[0m \u001b[38;5;255m\u001b[48;5;233m   233 12/12/12   \u001b[0m \u001b[38;5;255m\u001b[48;5;234m   234 1C/1C/1C   \u001b[0m \u001b[38;5;255m\u001b[48;5;235m   235 26/26/26   \u001b[0m \u001b[38;5;255m\u001b[48;5;236m   236 30/30/30   \u001b[0m \u001b[38;5;255m\u001b[48;5;237m   237 3A/3A/3A   \u001b[0m\r\n"]
[7.264513,"o","\u001b[38;5;255m\u001b[48;5;238m   238 44/44/44   \u001b[0m \u001b[38;5;255m\u001b[48;5;239m   239 4E/4E/4E   \u001b[0m \u001b[38;5;255m\u001b[48;5;240m   240 58/58/58   \u001b[0m \u001b[38;5;255m\u001b[48;5;241m   241 62/62/62   \u001b[0m \u001b[38;5;255m\u001b[48;5;242m   242 6C/6C/6C   \u001b[0m \u001b[38;5;255m\u001b[48;5;243m   243 76/76/76   \u001b[0m\r\n"]
[7.26457,"o","\u001b[38;5;255m\u001b[48;5;244m   244 80/80/80   \u001b[0m \u001b[38;5;255m\u001b[48;5;245m   245 8A/8A/8A   \u001b[0m \u001b[38;5;255m\u001b[48;5;246m   246 94/94/94   \u001b[0m \u001b[38;5;255m\u001b[48;5;247m   247 9E/9E/9E   \u001b[0m \u001b[38;5;255m\u001b[48;5;248m   248 A8/A8/A8   \u001b[0m \u001b[38;5;255m\u001b[48;5;249m   249 B2/B2/B2   \u001b[0m\r\n"]
[7.264657,"o","\u001b[38;5;255m\u001b[48;5;250m   250 BC/BC/BC   \u001b[0m \u001b[38;5;255m\u001b[48;5;251m   251 C6/C6/C6   \u001b[0m \u001b[38;5;0m\u001b[48;5;252m   252 D0/D0/D0   \u001b[0m \u001b[38;5;0m\u001b[48;5;253m   253 DA/DA/DA   \u001b[0m \u001b[38;5;0m\u001b[48;5;254m   254 E4/E4/E4   \u001b[0m \u001b[38;5;0m\u001b[48;5;255m   255 EE/EE/EE   \u001b[0m\r\n"]
[7.267284,"o","\u001b[1m\u001b[7m%\u001b[27m\u001b[1m\u001b[0m                                                                                                                       \r \r"]
[7.267378,"o","\u001b]2;mrmarble@founder:~/repos/termsvg\u0007\u001b]1;~/repos/termsvg\u0007"]
[7.287736,"o","\r\u001b[0m\u001b[27m\u001b[24m\u001b[J\u001b[01;32m➜  \u001b[36mtermsvg\u001b[00m \u001b[01;34mgit:(\u001b[31mmaster\u001b[34m) \u001b[33m✗\u001b[00m \u001b[K"]
[7.287848,"o","\u001b[?1h\u001b="]
[7.288259,"o","\u001b[?2004h"]
[9.671749,"o","\u001b[4me\u001b[24m"]
[9.672449,"o","\u0008\u001b[4me\u001b[24m\u001b[90mxit\u001b[39m\u0008\u0008\u0008"]
[9.845889,"o","\u0008\u001b[24m\u001b[32me\u001b[32mx\u001b[39m"]
[9.971578,"o","\u0008\u0008\u001b[1m\u001b[31me\u001b[1m\u001b[31mx\u001b[1m\u001b[31mi\u001b[0m\u001b[39m"]
[10.096186,"o","\u0008\u0008\u0008\u001b[0m\u001b[32me\u001b[0m\u001b[32mx\u001b[0m\u001b[32mi\u001b[32mt\u001b[39m"]
[10.295964,"o","\u001b[?1l\u001b\u003e"]
[10.296633,"o","\u001b[?2004l\r\r\n"]
[10.296995,"o","\u001b]2;exit\u0007\u001b]1;exit\u0007"]

================================================
FILE: examples/444816.cast
================================================
{"version": 2, "width": 78, "height": 17, "timestamp": 1635318110, "env": {"SHELL": "/bin/zsh", "TERM": "xterm-256color"}}
[0.007307, "o", "\u001b[?1049h\u001b[22;0;0t\u001b[1;17r\u001b(B\u001b[m\u001b[4l\u001b[?7h\u001b[?25l\u001b[H\u001b[2J"]
[0.00767, "o", "\u001b[H\u001b[2Jx=-1.50 m\u001b[1;63H← to nudge left\r\nẋ=0.00 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.52 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.00 rad/s\r\nu=5.25\n\n\n┌───────┐\n\u001b[7G|\u001b[15G│\n\u001b[7G|   M   │\n\u001b[7G|   \\\\  │\n\u001b[7G└o---\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H| \\\u001b[21G|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1\\\\0     -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;14H\\\n\b\b┌───┐"]
[0.027879, "o", "\u001b[H\u001b[2Jx=-1.50 m\u001b[1;63H← to nudge left\r\nẋ=0.04 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.52 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.07 rad/s\r\nu=5.25\n\n\n┌───────┐\n\u001b[7G|\u001b[15G│\n\u001b[7G|   M   │\n\u001b[7G|   \\\\  │\n\u001b[7G└o---\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H| \\\u001b[21G|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1\\\\0     -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;14H\\\n\b\b┌───┐"]
[0.048415, "o", "\u001b[H\u001b[2Jx=-1.50 m\u001b[1;63H← to nudge left\r\nẋ=0.07 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.52 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.13 rad/s\r\nu=5.23\n\n\n┌───────┐\n\u001b[7G|\u001b[15G│\n\u001b[7G|   M   │\n\u001b[7G|   \\\\  │\n\u001b[7G└o---\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H| \\\u001b[21G|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n "]
[0.048481, "o", "-2.00    -1\\\\0     -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;14H\\\n\b\b┌───┐"]
[0.068991, "o", "\u001b[H\u001b[2Jx=-1.50 m\u001b[1;63H← to nudge left\r\nẋ=0.11 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.52 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.20 rad/s\r\nu=5.20\n\n\n┌───────┐\n\u001b[7G|\u001b[15G│\n\u001b[7G|   M   │\n\u001b[7G|    \\  │\n\u001b[7G└o---\\-o┘\r\n"]
[0.069044, "o", "\u001b(0\u001b[0mqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H| \\\u001b[21G|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1\\\\0     -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;14H\\\n\b\b┌───┐"]
[0.089619, "o", "\u001b[H\u001b[2Jx=-1.49 m\u001b[1;63H← to nudge left\r\nẋ=0.15 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.51 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.26 rad/s\r\nu=5.17\n\n\n┌───────┐\n\u001b[7G|\u001b[15G│\n\u001b[7G|   M   │\n\u001b[7G|    \\  │\n\u001b[7G└o---\\-o┘\r\n"]
[0.08988, "o", "\u001b(0\u001b[0mqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H| \\\u001b[21G|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1\\\\0     -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;14H\\\n\b\b┌───┐"]
[0.110293, "o", "\u001b[H\u001b[2Jx=-1.49 m\u001b[1;63H← to nudge left\r\nẋ=0.18 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.50 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.33 rad/s\r\nu=5.12\n\n\n┌───────┐\n\u001b[7G|\u001b[15G"]
[0.110478, "o", "│\n\u001b[7G|   M   │\n\u001b[7G|    \\  │\n\u001b[7G└o---\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H| \\\u001b[21G|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1\\\\0     -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;14H"]
[0.110756, "o", "\\\n\b\b┌───┐"]
[0.131124, "o", "\u001b[H\u001b[2Jx=-1.48 m\u001b[1;63H← to nudge left\r\nẋ=0.22 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.49 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.39 rad/s\r\nu=5.07\n\n\n"]
[0.131265, "o", "┌───────┐\n\u001b[7G|\u001b[15G│\n\u001b[7G|   M   │\n\u001b[7G|    \\  │\n\u001b[7G└o---\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H| \\\u001b[21G"]
[0.131645, "o", "|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1\\\\0     -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;14H\\\\\n\b\b\b┌───┐"]
[0.152103, "o", "\u001b[H\u001b[2Jx=-1.48 m\u001b[1;63H← to nudge left\r\nẋ=0.26 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.49 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.46 rad/s\r\nu=5.01\n\n\n"]
[0.152297, "o", "┌───────┐\n\u001b[7G|\u001b[15G│\n\u001b[7G|   M   │\n\u001b[7G|    \\  │\n\u001b[7G└o---\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H| \\\\\u001b[21G|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n "]
[0.152555, "o", "-2.00    -1.\\0     -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;14H\\\\\n\b\b\b┌───┐"]
[0.173157, "o", "\u001b[H\u001b[2Jx=-1.47 m\u001b[1;63H← to nudge left\r\nẋ=0.29 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.47 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.52 rad/s\r\nu=4.94\n\n\n ┌───────┐\n\u001b[8G|\u001b[16G│\n\u001b[8G|   M   │\n\u001b[8G"]
[0.173545, "o", "|   \\   │\n\u001b[8G└o--\\\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H| \\\\\u001b[21G|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n "]
[0.173685, "o", "-2.00    -1.\\0     -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;14H\\\\\n\b\b\b┌───┐"]
[0.194271, "o", "\u001b[H\u001b[2Jx=-1.47 m\u001b[1;63H← to nudge left\r\nẋ=0.33 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.46 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.59 rad/s\r\nu=4.87\n\n\n ┌───────┐\n\u001b[8G|\u001b[16G│\n\u001b[8G"]
[0.194585, "o", "|   M   │\n\u001b[8G|   \\   │\n\u001b[8G└o--\\\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H| \\\\\u001b[21G|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n "]
[0.194878, "o", "-2.00    -1.\\0     -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;14H\\\\\n\b\b\b┌───┐"]
[0.215137, "o", "\u001b[H\u001b[2Jx=-1.46 m\u001b[1;63H← to nudge left\r\nẋ=0.36 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.45 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.65 rad/s\r\nu=4.79\n\n\n ┌───────┐\n\u001b[8G"]
[0.215256, "o", "|\u001b[16G│\n\u001b[8G|   M   │\n\u001b[8G|   \\   │\n\u001b[8G└o--\\\\-o┘\r\n"]
[0.215346, "o", "\u001b(0\u001b[0mqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H| \\\\\u001b[21G|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.\\0     -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;14H"]
[0.215774, "o", "\\\\\n\b\b\b┌───┐"]
[0.236104, "o", "\u001b[H\u001b[2Jx=-1.45 m\u001b[1;63H← to nudge left\r\nẋ=0.40 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.43 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.71 rad/s\r\nu=4.71\n\n\n ┌───────┐\n\u001b[8G|\u001b[16G│\n\u001b[8G"]
[0.236418, "o", "|   M   │\n\u001b[8G|   \\   │\n\u001b[8G└o--\\\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H| \\\\\u001b[21G|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n "]
[0.236601, "o", "-2.00    -1.\\0     -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;14H\\\\\n\b\b┌───┐"]
[0.257114, "o", "\u001b[H\u001b[2Jx=-1.44 m\u001b[1;63H← to nudge left\r\nẋ=0.43 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.42 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.77 rad/s\r\nu=4.63\n\n\n ┌───────┐\n\u001b[8G|\u001b[16G│\n\u001b[8G|   M   │\n\u001b[8G|   \\\\  │\n\u001b[8G"]
[0.257247, "o", "└o---\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H| \\\\\u001b[21G|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n "]
[0.257333, "o", "-2.00    -1.\\0     -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;14H\\\\\n\b\b┌───┐"]
[0.278205, "o", "\u001b[H\u001b[2Jx=-1.43 m\u001b[1;63H← to nudge left\r\nẋ=0.46 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.40 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.82 rad/s\r\nu=4.54\n\n\n ┌───────┐\n\u001b[8G|\u001b[16G│\n\u001b[8G|   M   │\n\u001b[8G"]
[0.278346, "o", "|    \\  │\n\u001b[8G└o---\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|  \\\u001b[21G|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.\\0     -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;14H"]
[0.278758, "o", "\\\\\n\b\b┌───┐"]
[0.299019, "o", "\u001b[H\u001b[2Jx=-1.42 m\u001b[1;63H← to nudge left\r\nẋ=0.50 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.38 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.88 rad/s\r\nu=4.45\n\n\n  ┌───────┐\u001b[9;9H|\u001b[17G│\u001b[10;9H|   M   │\u001b[11;9H|   \\   │\u001b[12;9H"]
[0.299161, "o", "└o--\\--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|  \\\u001b[21G|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.\\\\     -1.00    -0.50     0.00     0.50\u001b[59G"]
[0.29925, "o", "1.00     1.50\u001b[16;15H\\\n\b\b┌───┐"]
[0.319784, "o", "\u001b[H\u001b[2Jx=-1.41 m\u001b[1;63H← to nudge left\r\nẋ=0.53 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.36 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.93 rad/s\r\nu=4.36\n\n\n  ┌───────┐\u001b[9;9H|\u001b[17G│\u001b[10;9H|   M   │\u001b[11;9H|   \\   │\u001b[12;9H"]
[0.320096, "o", "└o--\\--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|  \\\u001b[21G|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.\\\\     -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;15H"]
[0.320276, "o", "\\\n\b\b┌───┐"]
[0.340788, "o", "\u001b[H\u001b[2Jx=-1.40 m\u001b[1;63H← to nudge left\r\nẋ=0.56 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.34 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.98 rad/s\r\n"]
[0.341108, "o", "u=4.28\n\n\n  ┌───────┐\u001b[9;9H|\u001b[17G│\u001b[10;9H|   M   │\u001b[11;9H|   \\   │\u001b[12;9H└o--\\\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|  \\\u001b[21G|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H"]
[0.341332, "o", "|\r\n -2.00    -1.\\\\     -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;15H\\\n\b\\\b\b"]
[0.361965, "o", "\u001b[H\u001b[2Jx=-1.39 m\u001b[1;63H← to nudge left\r\nẋ=0.59 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.32 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.03 rad/s\r\nu=4.19\n\n\n  ┌───────┐\u001b[9;9H|\u001b[17G│\u001b[10;9H|   M   │\u001b[11;9H|   \\\\  │\u001b[12;9H"]
[0.362279, "o", "└o---\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|  \\\u001b[21G|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.5\\     -1.00    -0.50     0.00     0.50\u001b[59G"]
[0.362488, "o", "1.00     1.50\u001b[16;15H\\\n\b\\\b\b"]
[0.382956, "o", "\u001b[H\u001b[2Jx=-1.37 m\u001b[1;63H← to nudge left\r\nẋ=0.62 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.30 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.08 rad/s\r\nu=4.11\n\n\n  ┌───────┐\u001b[9;9H|\u001b[17G│\u001b[10;9H|   M   │\u001b[11;9H"]
[0.383141, "o", "|    \\  │\u001b[12;9H└o---\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|  \\\\     |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.5\\     -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;15H\\\n\b\\\\\b\b\b"]
[0.40385, "o", "\u001b[H\u001b[2Jx=-1.36 m\u001b[1;63H← to nudge left\r\nẋ=0.65 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.27 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.12 rad/s\r\n"]
[0.404173, "o", "u=4.04\n\n\n   ┌───────┐\u001b[9;10H|\u001b[18G│\u001b[10;10H|   M   │\u001b[11;10H|   \\   │\u001b[12;10H└o--\\--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|   \\     |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H"]
[0.404371, "o", "|\r\n -2.00    -1.5\\     -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;15H\\\n\b\\\\\b\b\b"]
[0.424899, "o", "\u001b[H\u001b[2Jx=-1.34 m\u001b[1;63H← to nudge left\r\nẋ=0.68 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.25 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.16 rad/s\r\nu=3.97\n\n\n   ┌───────┐\u001b[9;10H|\u001b[18G│\u001b[10;10H|   M   │\u001b[11;10H|   \\   │\u001b[12;10H└o--\\--o┘\r\n"]
[0.425197, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|   \\     |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.5\\     -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;15H\\\n\b\\\\\b\b\b"]
[0.445753, "o", "\u001b[H\u001b[2Jx=-1.33 m\u001b[1;63H← to nudge left\r\nẋ=0.70 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.22 rad\u001b[3;63H⮠ to restart\r\n"]
[0.446112, "o", "ȧ=-1.20 rad/s\r\nu=3.91\n\n\n   ┌───────┐\u001b[9;10H|\u001b[18G│\u001b[10;10H|   M   │\u001b[11;10H|   \\   │\u001b[12;10H└o--\\\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|   \\     |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H"]
[0.446348, "o", "|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.5\\     -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;15H\\\\\n\b\\\b\b\b"]
[0.466741, "o", "\u001b[H\u001b[2Jx=-1.31 m\u001b[1;63H← to nudge left\r\nẋ=0.73 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.20 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.23 rad/s\r\nu=3.86\n\n\n    ┌───────┐\u001b[9;11H"]
[0.46705, "o", "|\u001b[19G│\u001b[10;11H|   M   │\u001b[11;11H|   \\   │\u001b[12;11H└o--\\--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|   \\     |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n "]
[0.467238, "o", "-2.00    -1.5\\\\    -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;16H\\\n\b\\\b\b\b"]
[0.487805, "o", "\u001b[H\u001b[2Jx=-1.30 m\u001b[1;63H← to nudge left\r\nẋ=0.75 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.17 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.27 rad/s\r\nu=3.82\n\n\n    ┌───────┐\u001b[9;11H|\u001b[19G│\u001b[10;11H|   M   │\u001b[11;11H|   \\   │\u001b[12;11H"]
[0.48795, "o", "└o--\\--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|   \\\\    |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50\\    -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;16H"]
[0.488208, "o", "\\\n\b\\\b\b\b"]
[0.508817, "o", "\u001b[H\u001b[2Jx=-1.28 m\u001b[1;63H← to nudge left\r\nẋ=0.77 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.14 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.29 rad/s\r\n"]
[0.509221, "o", "u=3.78\n\n\n    ┌───────┐\u001b[9;11H|\u001b[19G│\u001b[10;11H|   M   │\u001b[11;11H|   \\   │\u001b[12;11H└o--\\--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|    \\    |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50\\    -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;16H\\\n\b\\\b\b\b"]
[0.529366, "o", "\u001b[H\u001b[2Jx=-1.27 m\u001b[1;63H← to nudge left\r\nẋ=0.79 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.12 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.32 rad/s\r\nu=3.76\n\n\n    ┌───────┐\u001b[9;11H|\u001b[19G│\u001b[10;11H|   M   │\u001b[11;11H|    \\  │\u001b[12;11H└o---\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|    \\    |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50\\    -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;16H\\\n\b\\\b\b\b"]
[0.549919, "o", "\u001b[H\u001b[2Jx=-1.25 m\u001b[1;63H← to nudge left\r\nẋ=0.81 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.09 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.34 rad/s\r\nu=3.75\u001b[8;12H┌───────┐\u001b[9;12H|\u001b[20G│\u001b[10;12H|   M   │\u001b[11;12H|   \\   │\u001b[12;12H└o--\\--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|    \\    |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50\\    -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;16H\\\n\b\\\b\b"]
[0.570622, "o", "\u001b[H\u001b[2Jx=-1.23 m\u001b[1;63H← to nudge left\r\nẋ=0.83 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.06 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.36 rad/s\r\nu=3.75\u001b[8;12H┌───────┐\u001b[9;12H|\u001b[20G│\u001b[10;12H|   M   │\u001b[11;12H|   \\   │\u001b[12;12H└o--\\--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|    \\    |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50\\    -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;16H\\\n\b\\\\\b\b\b"]
[0.591366, "o", "\u001b[H\u001b[2Jx=-1.22 m\u001b[1;63H← to nudge left\r\nẋ=0.84 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.03 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.37 rad/s\r\nu=3.76\u001b[8;12H┌───────┐\u001b[9;12H"]
[0.591549, "o", "|\u001b[20G│\u001b[10;12H|   M   │\u001b[11;12H|   \\   │\u001b[12;12H└o--\\--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|     \\   |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50 \\   -1.00    -0.50     0.00     0.50\u001b[59G"]
[0.591888, "o", "1.00     1.50\u001b[16;17H\\\n\b\\\b\b\b"]
[0.612373, "o", "\u001b[H\u001b[2Jx=-1.20 m\u001b[1;63H← to nudge left\r\nẋ=0.86 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.00 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.38 rad/s\r\nu=3.78\u001b[8;13H┌───────┐\u001b[9;13H|\u001b[21G│\u001b[10;13H|   M   │\u001b[11;13H"]
[0.612567, "o", "|   \\   │\u001b[12;13H└o--\\--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|     \\   |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50 \\   -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;17H\\\n\b\\\b\b\b"]
[0.633483, "o", "\u001b[H\u001b[2Jx=-1.18 m\u001b[1;63H← to nudge left\r\nẋ=0.87 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.02 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.39 rad/s\r\nu=3.82\u001b[8;13H┌───────┐\u001b[9;13H|\u001b[21G│\u001b[10;13H|   M   │\u001b[11;13H|   /   │\u001b[12;13H"]
[0.633854, "o", "└o--/--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|     /   |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50 /   -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;17H/\n\b/\b\b\b"]
[0.654558, "o", "\u001b[H\u001b[2Jx=-1.16 m\u001b[1;63H← to nudge left\r\nẋ=0.88 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.05 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.39 rad/s\r\nu=3.87\u001b[8;13H┌───────┐\u001b[9;13H|\u001b[21G│\u001b[10;13H|   M   │\u001b[11;13H"]
[0.654683, "o", "|   /   │\u001b[12;13H└o--/--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|     /   |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50 /   -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;17H"]
[0.655058, "o", "/\n\b/\b\b\b"]
[0.675287, "o", "\u001b[H\u001b[2Jx=-1.14 m\u001b[1;63H← to nudge left\r\nẋ=0.89 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.08 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.39 rad/s\r\nu=3.93\u001b[8;14H┌───────┐\u001b[9;14H|\u001b[22G│\u001b[10;14H|   M   │\u001b[11;14H|   /   │\u001b[12;14H"]
[0.675422, "o", "└o--/--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|     //  |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50 /   -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;17H/\n\b"]
[0.675782, "o", "/\b\b\b"]
[0.696189, "o", "\u001b[H\u001b[2Jx=-1.12 m\u001b[1;63H← to nudge left\r\nẋ=0.90 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.11 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.39 rad/s\r\nu=4.00\u001b[8;14H┌───────┐\u001b[9;14H|\u001b[22G│\u001b[10;14H"]
[0.696534, "o", "|   M   │\u001b[11;14H|   /   │\u001b[12;14H└o--/--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[18G/  |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50  /  -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;17H//\n\b\b/\b\b\b"]
[0.717182, "o", "\u001b[H\u001b[2Jx=-1.10 m\u001b[1;63H← to nudge left\r\nẋ=0.90 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.14 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.38 rad/s\r\nu=4.09\u001b[8;15H┌───────┐\u001b[9;15H|\u001b[23G│\u001b[10;15H|   M   │\u001b[11;15H"]
[0.717301, "o", "|  /    │\u001b[12;15H└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[18G/  |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n "]
[0.718009, "o", "-2.00    -1.50  /  -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;18H/\n\b/\b\b\b\b"]
[0.73823, "o", "\u001b[H\u001b[2Jx=-1.09 m\u001b[1;63H← to nudge left\r\nẋ=0.91 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.17 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.37 rad/s\r\nu=4.19\u001b[8;15H┌───────┐\u001b[9;15H|\u001b[23G│\u001b[10;15H|   M   │\u001b[11;15H|   /   │\u001b[12;15H"]
[0.738357, "o", "└o--/--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[18G/  |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n "]
[0.73871, "o", "-2.00    -1.50  /  -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;18H/\n\b/\b\b\b\b"]
[0.759252, "o", "\u001b[H\u001b[2Jx=-1.07 m\u001b[1;63H← to nudge left\r\nẋ=0.92 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.20 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.35 rad/s\r\nu=4.30\u001b[8;15H┌───────┐\u001b[9;15H|\u001b[23G│\u001b[10;15H|   M   │\u001b[11;15H|   /   │\u001b[12;15H"]
[0.759374, "o", "└o--/--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[18G// |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50  /  -1.00    -0.50     0.00     0.50\u001b[59G"]
[0.759706, "o", "1.00     1.50\u001b[16;18H/\n\b/\b\b\b"]
[0.780316, "o", "\u001b[H\u001b[2Jx=-1.05 m\u001b[1;63H← to nudge left\r\nẋ=0.92 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.23 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.33 rad/s\r\nu=4.42\u001b[8;16H┌───────┐\u001b[9;16H|\u001b[24G│\u001b[10;16H|   M   │\u001b[11;16H|  /    │\u001b[12;16H└o-/---o┘\r\n"]
[0.780489, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[19G/ |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50  // -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;18H/\n\b/\b\b\b"]
[0.800723, "o", "\u001b[H\u001b[2Jx=-1.03 m\u001b[1;63H← to nudge left\r\nẋ=0.92 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.25 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.31 rad/s\r\nu=4.55\u001b[8;16H┌───────┐\u001b[9;16H|\u001b[24G│\u001b[10;16H|   M   │\u001b[11;16H|   /   │\u001b[12;16H└o-//--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[19G/ |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50   / -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;18H//\n\b\b/\b\b\b"]
[0.820997, "o", "\u001b[H\u001b[2Jx=-1.01 m\u001b[1;63H← to nudge left\r\nẋ=0.92 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.28 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.29 rad/s\r\nu=4.69\u001b[8;16H┌───────┐\u001b[9;16H|\u001b[24G│\u001b[10;16H|   M   │\u001b[11;16H|   /   │\u001b[12;16H└o--/--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[19G/ |\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50   / -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;19H/\n\b\b//\b\b\b\b"]
[0.841282, "o", "\u001b[H\u001b[2Jx=-0.99 m\u001b[1;63H← to nudge left\r\nẋ=0.93 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.30 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.26 rad/s\r\nu=4.84\u001b[8;17H┌───────┐\u001b[9;17H|\u001b[25G│\u001b[10;17H|   M   │\u001b[11;17H|  /    │\u001b[12;17H└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[19G//|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50   / -1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;19H/\n\b\b//\b\b\b\b"]
[0.861894, "o", "\u001b[H\u001b[2Jx=-0.97 m\u001b[1;63H← to nudge left\r\nẋ=0.93 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.33 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.23 rad/s\r\nu=4.99\u001b[8;17H┌───────┐\u001b[9;17H|\u001b[25G│\u001b[10;17H|   M   │\u001b[11;17H|   /   │\u001b[12;17H└o-//--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;20H/|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50   //-1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;19H/\n\b/\b\b\b\b"]
[0.882459, "o", "\u001b[H\u001b[2Jx=-0.95 m\u001b[1;63H← to nudge left\r\nẋ=0.93 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.35 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.20 rad/s\r\nu=5.16\u001b[8;17H┌───────┐\u001b[9;17H|\u001b[25G│\u001b[10;17H|   M   │\u001b[11;17H|   /   │\u001b[12;17H└o--/--o┘\r\n"]
[0.882547, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;20H/|\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50    /-1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;19H//\n\u001b[16G┌───┐"]
[0.903065, "o", "\u001b[H\u001b[2Jx=-0.93 m\u001b[1;63H← to nudge left\r\nẋ=0.93 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.38 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.17 rad/s\r\nu=5.32\u001b[8;18H┌───────┐\u001b[9;18H"]
[0.903234, "o", "|\u001b[26G│\u001b[10;18H|   M   │\u001b[11;18H|  /    │\u001b[12;18H└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;20H//\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n "]
[0.903587, "o", "-2.00    -1.50    /-1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;19H//\n\b\b\b\b┌───┐"]
[0.923453, "o", "\u001b[H\u001b[2Jx=-0.91 m\u001b[1;63H← to nudge left\r\nẋ=0.93 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.40 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.13 rad/s\r\nu=5.50\u001b[8;18H┌───────┐\u001b[9;18H|\u001b[26G│\u001b[10;18H|   M   │\u001b[11;18H|   /   │\u001b[12;18H└o-//--o┘\r\n"]
[0.92358, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;20H//\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50    /-1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;20H/\n\b\b\b\b┌───┐"]
[0.944073, "o", "\u001b[H\u001b[2Jx=-0.89 m\u001b[1;63H← to nudge left\r\nẋ=0.93 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.42 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.09 rad/s\r\nu=5.67\u001b[8;19H┌───────┐\u001b[9;19H|\u001b[27G│\u001b[10;19H|   M   │\u001b[11;19H|  /    │\u001b[12;19H└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H/\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50    //1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;20H"]
[0.944232, "o", "/\n\b\b\b\b┌───┐"]
[0.964684, "o", "\u001b[H\u001b[2Jx=-0.88 m\u001b[1;63H← to nudge left\r\nẋ=0.93 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.45 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.05 rad/s\r\nu=5.85\u001b[8;19H┌───────┐\u001b[9;19H|\u001b[27G│\u001b[10;19H|   M   │\u001b[11;19H|  //   │\u001b[12;19H└o-/---o┘\r\n"]
[0.965021, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H/\u001b[14;30H|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50    //1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;20H/\n\b\b\b\b┌───┐"]
[0.985338, "o", "\u001b[H\u001b[2Jx=-0.86 m\u001b[1;63H← to nudge left\r\nẋ=0.93 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.47 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.01 rad/s\r\nu=6.03\u001b[8;19H┌───────┐\u001b[9;19H|\u001b[27G│\u001b[10;19H|   M   │\u001b[11;19H"]
[0.985762, "o", "|   /   │\u001b[12;19H└o-//--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H//\u001b[30G|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     /1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;20H//\n\u001b[17G┌───┐"]
[1.006353, "o", "\u001b[H\u001b[2Jx=-0.84 m\u001b[1;63H← to nudge left\r\nẋ=0.93 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.49 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.96 rad/s\r\nu=6.21\u001b[8;20H┌───────┐\u001b[9;20H|\u001b[28G│\u001b[10;20H|   M   │\u001b[11;20H|  /    │\u001b[12;20H"]
[1.006738, "o", "└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H//\u001b[30G|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     /1.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;20H//\n\b\b\b\b┌───┐"]
[1.027127, "o", "\u001b[H\u001b[2Jx=-0.82 m\u001b[1;63H← to nudge left\r\nẋ=0.94 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.51 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.91 rad/s\r\nu=6.40\u001b[8;20H┌───────┐\u001b[9;20H|\u001b[28G│\u001b[10;20H"]
[1.027491, "o", "|   M   │\u001b[11;20H|  //   │\u001b[12;20H└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|/\u001b[30G|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     //.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;21H/\n\b\b\b\b┌───┐"]
[1.04815, "o", "\u001b[H\u001b[2Jx=-0.80 m\u001b[1;63H← to nudge left\r\nẋ=0.94 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.52 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.86 rad/s\r\nu=6.58\u001b[8;20H┌───────┐\u001b[9;20H|\u001b[28G│\u001b[10;20H|   M   │\u001b[11;20H|   /   │\u001b[12;20H└o-//--o┘\r\n"]
[1.04854, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|//\u001b[30G|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -/.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;21H/\n\b\b\b\b┌───┐"]
[1.06884, "o", "\u001b[H\u001b[2Jx=-0.78 m\u001b[1;63H← to nudge left\r\nẋ=0.94 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.54 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.82 rad/s\r\nu=6.75\u001b[8;21H┌───────┐\u001b[9;21H|\u001b[29G│\u001b[10;21H|   M   │\u001b[11;21H|  /    │\u001b[12;21H"]
[1.069211, "o", "└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|//\u001b[30G|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -/.00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;21H//\n\u001b[18G┌───┐"]
[1.089954, "o", "\u001b[H\u001b[2Jx=-0.76 m\u001b[1;63H← to nudge left\r\nẋ=0.95 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.56 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.76 rad/s\r\nu=6.92\u001b[8;21H┌───────┐\u001b[9;21H|\u001b[29G│\u001b[10;21H|   M   │\u001b[11;21H|   /   │\u001b[12;21H"]
[1.090336, "o", "└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H| /\u001b[30G|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -//00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;21H//\n\b\b\b\b┌───┐"]
[1.110761, "o", "\u001b[H\u001b[2Jx=-0.74 m\u001b[1;63H← to nudge left\r\nẋ=0.95 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.57 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.71 rad/s\r\nu=7.09\u001b[8;21H┌───────┐\u001b[9;21H|\u001b[29G│\u001b[10;21H|   M   │\u001b[11;21H|   /   │\u001b[12;21H└o-//--o┘\r\n"]
[1.111117, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H| //     |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -//00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;22H/\n\b\b\b\b┌───┐"]
[1.131618, "o", "\u001b[H\u001b[2Jx=-0.72 m\u001b[1;63H← to nudge left\r\nẋ=0.96 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.59 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.66 rad/s\r\nu=7.25\u001b[8;22H┌───────┐\u001b[9;22H|\u001b[30G│\u001b[10;22H|   M   │\u001b[11;22H|  /    │\u001b[12;22H"]
[1.131963, "o", "└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H| //     |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1/00    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;22H//\n\u001b[19G┌───┐"]
[1.152469, "o", "\u001b[H\u001b[2Jx=-0.70 m\u001b[1;63H← to nudge left\r\nẋ=0.96 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.60 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.60 rad/s\r\nu=7.40\u001b[8;22H┌───────┐\u001b[9;22H|\u001b[30G│\u001b[10;22H|   M   │\u001b[11;22H"]
[1.152844, "o", "|   /   │\u001b[12;22H└o-//--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|  /     |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1//0    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;22H//\n\u001b[19G┌───┐"]
[1.173436, "o", "\u001b[H\u001b[2Jx=-0.68 m\u001b[1;63H← to nudge left\r\nẋ=0.97 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.61 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.55 rad/s\r\nu=7.54\u001b[8;23H┌───────┐\u001b[9;23H|\u001b[31G│\u001b[10;23H|   M   │\u001b[11;23H"]
[1.173842, "o", "|  /    │\u001b[12;23H└o//---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|  /     |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1//0    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;20H┌───┐\n\u001b[20G| m |"]
[1.194173, "o", "\u001b[H\u001b[2Jx=-0.66 m\u001b[1;63H← to nudge left\r\nẋ=0.98 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.62 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.49 rad/s\r\nu=7.66\u001b[8;23H┌───────┐\u001b[9;23H|\u001b[31G│\u001b[10;23H|   M   │\u001b[11;23H|  //   │\u001b[12;23H"]
[1.194557, "o", "└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|  //    |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1//0    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;20H┌───┐\n\u001b[20G| m |"]
[1.214937, "o", "\u001b[H\u001b[2Jx=-0.64 m\u001b[1;63H← to nudge left\r\nẋ=0.98 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.63 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.44 rad/s\r\nu=7.78\u001b[8;23H┌───────┐\u001b[9;23H|\u001b[31G│\u001b[10;23H|   M   │\u001b[11;23H|   /   │\u001b[12;23H"]
[1.215325, "o", "└o-//--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|  //    |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1./0    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;20H┌───┐\n\u001b[20G| m |"]
[1.235767, "o", "\u001b[H\u001b[2Jx=-0.62 m\u001b[1;63H← to nudge left\r\nẋ=0.99 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.64 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.38 rad/s\r\nu=7.88\u001b[8;24H┌───────┐\u001b[9;24H|\u001b[32G│\u001b[10;24H"]
[1.236143, "o", "|   M   │\u001b[11;24H|  /    │\u001b[12;24H└o//---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|   //   |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.//    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;21H┌───┐\n\u001b[21G| m |"]
[1.256622, "o", "\u001b[H\u001b[2Jx=-0.60 m\u001b[1;63H← to nudge left\r\nẋ=1.00 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.64 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.32 rad/s\r\nu=7.98\u001b[8;24H┌───────┐\u001b[9;24H|\u001b[32G│\u001b[10;24H|   M   │\u001b[11;24H|  //   │\u001b[12;24H"]
[1.257028, "o", "└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|   //   |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.//    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;21H┌───┐\n\u001b[21G| m |"]
[1.277553, "o", "\u001b[H\u001b[2Jx=-0.57 m\u001b[1;63H← to nudge left\r\nẋ=1.01 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.65 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.27 rad/s\r\nu=8.05\u001b[8;25H┌───────┐\u001b[9;25H|\u001b[33G│\u001b[10;25H|   M   │\u001b[11;25H|  /    │\u001b[12;25H└o//---o┘\r\n"]
[1.277975, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|    /   |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.0//   -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;21H┌───┐\n\u001b[21G| m |"]
[1.298321, "o", "\u001b[H\u001b[2Jx=-0.55 m\u001b[1;63H← to nudge left\r\nẋ=1.02 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.65 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.21 rad/s\r\nu=8.12\u001b[8;25H┌───────┐\u001b[9;25H"]
[1.298682, "o", "|\u001b[33G│\u001b[10;25H|   M   │\u001b[11;25H|  /    │\u001b[12;25H└o//---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|    //  |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.0//   -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;22H┌───┐\n\u001b[22G| m |"]
[1.31909, "o", "\u001b[H\u001b[2Jx=-0.53 m\u001b[1;63H← to nudge left\r\nẋ=1.03 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.66 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.15 rad/s\r\nu=8.16\u001b[8;25H┌───────┐\u001b[9;25H|\u001b[33G│\u001b[10;25H"]
[1.319471, "o", "|   M   │\u001b[11;25H|   /   │\u001b[12;25H└o-//--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|    //  |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00/   -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;22H┌───┐\n\u001b[22G| m |"]
[1.340229, "o", "\u001b[H\u001b[2Jx=-0.51 m\u001b[1;63H← to nudge left\r\nẋ=1.03 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.66 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.09 rad/s\r\nu=8.20\u001b[8;26H┌───────┐\u001b[9;26H|\u001b[34G│\u001b[10;26H|   M   │\u001b[11;26H|  /    │\u001b[12;26H"]
[1.340617, "o", "└o//---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|     /  |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00//  -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;23H┌───┐\n\u001b[23G| m |"]
[1.361193, "o", "\u001b[H\u001b[2Jx=-0.49 m\u001b[1;63H← to nudge left\r\nẋ=1.04 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.66 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.03 rad/s\r\nu=8.21\u001b[8;26H┌───────┐\u001b[9;26H|\u001b[34G│\u001b[10;26H|   M   │\u001b[11;26H|  //   │\u001b[12;26H"]
[1.361586, "o", "└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|     // |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00//  -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;23H┌───┐\n\u001b[23G| m |"]
[1.382258, "o", "\u001b[H\u001b[2Jx=-0.47 m\u001b[1;63H← to nudge left\r\nẋ=1.05 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.66 rad\u001b[3;63H⮠ to restart\r\nȧ=0.03 rad/s\r\nu=8.21\u001b[8;27H┌───────┐\u001b[9;27H|\u001b[35G│\u001b[10;27H|   M   │\u001b[11;27H"]
[1.382638, "o", "|  /    │\u001b[12;27H└o//---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[28G/ |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00 // -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;23H┌───┐\n\u001b[23G| m |"]
[1.403305, "o", "\u001b[H\u001b[2Jx=-0.45 m\u001b[1;63H← to nudge left\r\nẋ=1.00 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.66 rad\u001b[3;63H⮠ to restart\r\nȧ=0.11 rad/s\r\nu=-8.20\u001b[8;27H┌───────┐\u001b[9;27H"]
[1.403694, "o", "|\u001b[35G│\u001b[10;27H|   M   │\u001b[11;27H|  //   │\u001b[12;27H└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[28G//|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00 // -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;24H┌───┐\n\u001b[24G| m |"]
[1.424373, "o", "\u001b[H\u001b[2Jx=-0.43 m\u001b[1;63H← to nudge left\r\nẋ=0.94 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.65 rad\u001b[3;63H⮠ to restart\r\nȧ=0.20 rad/s\r\nu=-8.17\u001b[8;27H┌───────┐\u001b[9;27H|\u001b[35G│\u001b[10;27H|   M   │\u001b[11;27H|   /   │\u001b[12;27H"]
[1.424706, "o", "└o-//--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[28G//|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00  / -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;24H┌───┐\n\u001b[24G| m |"]
[1.44536, "o", "\u001b[H\u001b[2Jx=-0.41 m\u001b[1;63H← to nudge left\r\nẋ=0.89 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.65 rad\u001b[3;63H⮠ to restart\r\nȧ=0.28 rad/s\r\nu=-8.12\u001b[8;28H┌───────┐\u001b[9;28H|\u001b[36G│\u001b[10;28H|   M   │\u001b[11;28H|  /    │\u001b[12;28H"]
[1.445829, "o", "└o//---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[29G/|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00  //-0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;25H┌───┐\n\u001b[25G| m |"]
[1.466315, "o", "\u001b[H\u001b[2Jx=-0.39 m\u001b[1;63H← to nudge left\r\nẋ=0.84 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.64 rad\u001b[3;63H⮠ to restart\r\nȧ=0.37 rad/s\r\nu=-8.06\u001b[8;28H┌───────┐\u001b[9;28H|\u001b[36G│\u001b[10;28H|   M   │\u001b[11;28H"]
[1.466703, "o", "|  //   │\u001b[12;28H└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[29G//\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00  //-0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;25H┌───┐\n\u001b[25G| m |"]
[1.487268, "o", "\u001b[H\u001b[2Jx=-0.37 m\u001b[1;63H← to nudge left\r\nẋ=0.78 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.63 rad\u001b[3;63H⮠ to restart\r\nȧ=0.45 rad/s\r\nu=-7.99\u001b[8;28H┌───────┐\u001b[9;28H|\u001b[36G│\u001b[10;28H|   M   │\u001b[11;28H|   /   │\u001b[12;28H"]
[1.487647, "o", "└o-//--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H/\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00   /-0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;25H┌───┐\n\u001b[25G| m |"]
[1.507947, "o", "\u001b[H\u001b[2Jx=-0.36 m\u001b[1;63H← to nudge left\r\nẋ=0.73 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.62 rad\u001b[3;63H⮠ to restart\r\nȧ=0.53 rad/s\r\nu=-7.90\u001b[8;29H┌───────┐\u001b[9;29H|\u001b[37G│\u001b[10;29H"]
[1.508267, "o", "|   M   │\u001b[11;29H|  /    │\u001b[12;29H└o//---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H//\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00   //0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;26H┌───┐\n\u001b[26G| m |"]
[1.528609, "o", "\u001b[H\u001b[2Jx=-0.34 m\u001b[1;63H← to nudge left\r\nẋ=0.68 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.61 rad\u001b[3;63H⮠ to restart\r\nȧ=0.61 rad/s\r\nu=-7.81\u001b[8;29H┌───────┐\u001b[9;29H|\u001b[37G│\u001b[10;29H"]
[1.528883, "o", "|   M   │\u001b[11;29H|  /    │\u001b[12;29H└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H//\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    /0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;26H┌───┐\n\u001b[26G| m |"]
[1.549587, "o", "\u001b[H\u001b[2Jx=-0.33 m\u001b[1;63H← to nudge left\r\nẋ=0.63 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.59 rad\u001b[3;63H⮠ to restart\r\nȧ=0.69 rad/s\r\nu=-7.71\u001b[8;29H┌───────┐\u001b[9;29H|\u001b[37G│\u001b[10;29H|   M   │\u001b[11;29H|   /   │\u001b[12;29H"]
[1.549984, "o", "└o-//--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|/\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    //.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;29H//\n\u001b[26G┌───┐"]
[1.570636, "o", "\u001b[H\u001b[2Jx=-0.32 m\u001b[1;63H← to nudge left\r\nẋ=0.57 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.57 rad\u001b[3;63H⮠ to restart\r\nȧ=0.77 rad/s\r\nu=-7.60\u001b[8;29H┌───────┐\u001b[9;29H|\u001b[37G│\u001b[10;29H|   M   │\u001b[11;29H|   /   │\u001b[12;29H"]
[1.571023, "o", "└o-//--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|/\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    //.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;30H/\n\b\b\b\b┌───┐"]
[1.591549, "o", "\u001b[H\u001b[2Jx=-0.31 m\u001b[1;63H← to nudge left\r\nẋ=0.52 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.56 rad\u001b[3;63H⮠ to restart\r\nȧ=0.85 rad/s\r\nu=-7.48\u001b[8;30H┌───────┐\u001b[9;30H|\u001b[38G│\u001b[10;30H|   M   │\u001b[11;30H|  /    │\u001b[12;30H"]
[1.591929, "o", "└o//---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|//\u001b[40G|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -/.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;30H//\n\u001b[27G┌───┐"]
[1.612511, "o", "\u001b[H\u001b[2Jx=-0.30 m\u001b[1;63H← to nudge left\r\nẋ=0.47 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.54 rad\u001b[3;63H⮠ to restart\r\nȧ=0.92 rad/s\r\nu=-7.36\u001b[8;30H┌───────┐\u001b[9;30H|\u001b[38G│\u001b[10;30H|   M   │\u001b[11;30H"]
[1.612895, "o", "|  /    │\u001b[12;30H└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|//\u001b[40G|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -/.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;30H//\n\u001b[27G┌───┐"]
[1.633101, "o", "\u001b[H\u001b[2Jx=-0.29 m\u001b[1;63H← to nudge left\r\nẋ=0.42 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.52 rad\u001b[3;63H⮠ to restart\r\n"]
[1.633326, "o", "ȧ=1.00 rad/s\r\nu=-7.23\u001b[8;30H┌───────┐\u001b[9;30H|\u001b[38G│\u001b[10;30H|   M   │\u001b[11;30H|  //   │\u001b[12;30H└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H| /\u001b[40G|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -//50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;31H"]
[1.633529, "o", "/\n\b\b\b\b┌───┐"]
[1.654061, "o", "\u001b[H\u001b[2Jx=-0.28 m\u001b[1;63H← to nudge left\r\nẋ=0.37 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.49 rad\u001b[3;63H⮠ to restart\r\nȧ=1.07 rad/s\r\nu=-7.11\u001b[8;30H┌───────┐\u001b[9;30H|\u001b[38G│\u001b[10;30H|   M   │\u001b[11;30H|   /   │\u001b[12;30H"]
[1.654389, "o", "└o-//--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H| /\u001b[40G|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -//50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;31H/\n\b\b\b\b┌───┐"]
[1.674959, "o", "\u001b[H\u001b[2Jx=-0.27 m\u001b[1;63H← to nudge left\r\nẋ=0.32 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.47 rad\u001b[3;63H⮠ to restart\r\nȧ=1.14 rad/s\r\nu=-6.99\u001b[8;30H┌───────┐\u001b[9;30H|\u001b[38G│\u001b[10;30H|   M   │\u001b[11;30H|   /   │\u001b[12;30H└o-//--o┘\r\n"]
[1.675301, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H| //\u001b[40G|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0/50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;31H//\n\u001b[28G┌───┐"]
[1.696002, "o", "\u001b[H\u001b[2Jx=-0.27 m\u001b[1;63H← to nudge left\r\nẋ=0.27 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.45 rad\u001b[3;63H⮠ to restart\r\nȧ=1.21 rad/s\r\nu=-6.87\u001b[8;30H┌───────┐\u001b[9;30H|\u001b[38G│\u001b[10;30H|   M   │\u001b[11;30H|   /   │\u001b[12;30H"]
[1.696351, "o", "└o-//--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H| //\u001b[40G|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0/50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;32H/\n\b\b\b\b┌───┐"]
[1.717082, "o", "\u001b[H\u001b[2Jx=-0.26 m\u001b[1;63H← to nudge left\r\nẋ=0.22 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.42 rad\u001b[3;63H⮠ to restart\r\nȧ=1.27 rad/s\r\nu=-6.75\u001b[8;30H┌───────┐\u001b[9;30H|\u001b[38G│\u001b[10;30H|   M   │\u001b[11;30H|   /   │\u001b[12;30H"]
[1.717807, "o", "└o--/--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|  /\u001b[40G|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0//0     0.00     0.50\u001b[59G1.00     1.50\u001b[16;32H/\n\b\b\b\b┌───┐"]
[1.738033, "o", "\u001b[H\u001b[2Jx=-0.26 m\u001b[1;63H← to nudge left\r\nẋ=0.17 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.39 rad\u001b[3;63H⮠ to restart\r\nȧ=1.34 rad/s\r\nu=-6.64\u001b[8;31H┌───────┐\u001b[9;31H|\u001b[39G│\u001b[10;31H|   M   │\u001b[11;31H"]
[1.738406, "o", "|  /    │\u001b[12;31H└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|  /\u001b[40G|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0./0     0.00     0.50\u001b[59G1.00     1.50\u001b[16;32H/\n\b\b\b\b┌───┐"]
[1.758762, "o", "\u001b[H\u001b[2Jx=-0.26 m\u001b[1;63H← to nudge left\r\nẋ=0.12 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.36 rad\u001b[3;63H⮠ to restart\r\nȧ=1.40 rad/s\r\nu=-6.54\u001b[8;31H┌───────┐\u001b[9;31H|\u001b[39G│\u001b[10;31H|   M   │\u001b[11;31H"]
[1.759152, "o", "|  /    │\u001b[12;31H└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B//\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|  /\u001b[40G|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0./0     0.00     0.50\u001b[59G1.00     1.50\u001b[16;32H//\n\b\b\b\b┌───┐"]
[1.779617, "o", "\u001b[H\u001b[2Jx=-0.26 m\u001b[1;63H← to nudge left\r\nẋ=0.08 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.33 rad\u001b[3;63H⮠ to restart\r\nȧ=1.46 rad/s\r\nu=-6.45\u001b[8;31H┌───────┐\u001b[9;31H|\u001b[39G│\u001b[10;31H|   M   │\u001b[11;31H|  /    │\u001b[12;31H"]
[1.780009, "o", "└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|  //     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0./0     0.00     0.50\u001b[59G1.00     1.50\u001b[16;33H/\n\b\b//\b\b\b\b"]
[1.800307, "o", "\u001b[H\u001b[2Jx=-0.26 m\u001b[1;63H← to nudge left\r\nẋ=0.03 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.30 rad\u001b[3;63H⮠ to restart\r\nȧ=1.51 rad/s\r\nu=-6.37\u001b[8;31H┌───────┐\u001b[9;31H|\u001b[39G│\u001b[10;31H"]
[1.800682, "o", "|   M   │\u001b[11;31H|  /    │\u001b[12;31H└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|  //     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0./0     0.00     0.50\u001b[59G1.00     1.50\u001b[16;33H/\n\b\b//\b\b\b\b"]
[1.821012, "o", "\u001b[H\u001b[2Jx=-0.26 m\u001b[1;63H← to nudge left\r\nẋ=-0.01 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.27 rad\u001b[3;63H⮠ to restart\r\nȧ=1.56 rad/s\r\nu=-6.31\u001b[8;31H┌───────┐\u001b[9;31H|\u001b[39G│\u001b[10;31H"]
[1.821117, "o", "|   M   │\u001b[11;31H|  /    │\u001b[12;31H└o-/---o┘\r\n"]
[1.821487, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|   /     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.//     0.00     0.50\u001b[59G1.00     1.50\u001b[16;33H/\n\b/\b\b\b\b"]
[1.841481, "o", "\u001b[H\u001b[2Jx=-0.26 m\u001b[1;63H← to nudge left\r\nẋ=-0.05 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.23 rad\u001b[3;63H⮠ to restart\r\nȧ=1.61 rad/s\r\nu=-6.27\u001b[8;31H┌───────┐\u001b[9;31H|\u001b[39G"]
[1.841647, "o", "│\u001b[10;31H|   M   │\u001b[11;31H|  /    │\u001b[12;31H└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|   /     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.//     0.00     0.50\u001b[59G1.00     1.50\u001b[16;33H/\n\b/\b\b\b"]
[1.861814, "o", "\u001b[H\u001b[2Jx=-0.26 m\u001b[1;63H← to nudge left\r\nẋ=-0.09 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.20 rad\u001b[3;63H⮠ to restart\r\nȧ=1.65 rad/s\r\nu=-6.24\u001b[8;31H┌───────┐\u001b[9;31H|\u001b[39G│\u001b[10;31H|   M   │\u001b[11;31H|  /    │\u001b[12;31H└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|   /     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5/     0.00     0.50\u001b[59G1.00     1.50\u001b[16;33H//\n\b\b/\b\b\b"]
[1.882163, "o", "\u001b[H\u001b[2Jx=-0.26 m\u001b[1;63H← to nudge left\r\nẋ=-0.12 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.17 rad\u001b[3;63H⮠ to restart\r\nȧ=1.69 rad/s\r\nu=-6.23\u001b[8;31H┌───────┐\u001b[9;31H|\u001b[39G│\u001b[10;31H|   M   │\u001b[11;31H|  /    │\u001b[12;31H└o-/---o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|   /     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5/     0.00     0.50\u001b[59G1.00     1.50\u001b[16;34H/\n\b\b//\b\b\b\b"]
[1.902429, "o", "\u001b[H\u001b[2Jx=-0.26 m\u001b[1;63H← to nudge left\r\nẋ=-0.16 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.13 rad\u001b[3;63H⮠ to restart\r\nȧ=1.72 rad/s\r\nu=-6.23\u001b[8;30H┌───────┐\u001b[9;30H|\u001b[38G│\u001b[10;30H|   M   │\u001b[11;30H|   /   │\u001b[12;30H└o--/--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|   /     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H"]
[1.902505, "o", "|\r\n -2.00    -1.50     -1.00    -0.5/     0.00     0.50\u001b[59G1.00     1.50\u001b[16;34H/\n\b/\b\b\b\b"]
[1.922763, "o", "\u001b[H\u001b[2Jx=-0.27 m\u001b[1;63H← to nudge left\r\nẋ=-0.19 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.10 rad\u001b[3;63H⮠ to restart\r\nȧ=1.75 rad/s\r\nu=-6.26\u001b[8;30H┌───────┐\u001b[9;30H|\u001b[38G│\u001b[10;30H|   M   │\u001b[11;30H|   /   │\u001b[12;30H"]
[1.922826, "o", "└o--/--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|   /     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5/     0.00     0.50\u001b[59G1.00     1.50\u001b[16;34H"]
[1.922851, "o", "/\n\b/\b\b\b"]
[1.943277, "o", "\u001b[H\u001b[2Jx=-0.27 m\u001b[1;63H← to nudge left\r\nẋ=-0.22 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.06 rad\u001b[3;63H⮠ to restart\r\nȧ=1.78 rad/s\r\nu=-6.31\u001b[8;30H┌───────┐\u001b[9;30H|\u001b[38G│\u001b[10;30H|   M   │\u001b[11;30H|   /   │\u001b[12;30H└o--/--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H"]
[1.943352, "o", "|   /     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5/     0.00     0.50\u001b[59G1.00     1.50\u001b[16;34H/\n\b/\b\b\b"]
[1.964094, "o", "\u001b[H\u001b[2Jx=-0.28 m\u001b[1;63H← to nudge left\r\nẋ=-0.25 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=-0.02 rad\u001b[3;63H⮠ to restart\r\nȧ=1.80 rad/s\r\nu=-6.37\u001b[8;30H┌───────┐\u001b[9;30H|\u001b[38G│\u001b[10;30H|   M   │\u001b[11;30H|   /   │\u001b[12;30H"]
[1.964217, "o", "└o--/--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B/\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|   /     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5/     0.00     0.50\u001b[59G1.00     1.50\u001b[16;34H"]
[1.96455, "o", "/\n\b/\b\b\b"]
[1.985131, "o", "\u001b[H\u001b[2Jx=-0.28 m\u001b[1;63H← to nudge left\r\nẋ=-0.28 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.02 rad\u001b[3;63H⮠ to restart\r\nȧ=1.81 rad/s\r\nu=-6.46\u001b[8;30H┌───────┐\u001b[9;30H|\u001b[38G│\u001b[10;30H|   M   │\u001b[11;30H"]
[1.985262, "o", "|   \\   │\u001b[12;30H└o--\\--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|   \\     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5\\     0.00     0.50\u001b[59G1.00     1.50\u001b[16;34H"]
[1.985588, "o", "\\\n\b\\\b\b\b"]
[2.005984, "o", "\u001b[H\u001b[2Jx=-0.29 m\u001b[1;63H← to nudge left\r\nẋ=-0.31 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.05 rad\u001b[3;63H⮠ to restart\r\nȧ=1.82 rad/s\r\nu=-6.57\u001b[8;30H┌───────┐\u001b[9;30H|\u001b[38G│\u001b[10;30H|   M   │\u001b[11;30H|   \\   │\u001b[12;30H"]
[2.006108, "o", "└o--\\--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|   \\     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n "]
[2.006617, "o", "-2.00    -1.50     -1.00    -0.5\\     0.00     0.50\u001b[59G1.00     1.50\u001b[16;34H\\\n\b\\\b\b\b"]
[2.026766, "o", "\u001b[H\u001b[2Jx=-0.30 m\u001b[1;63H← to nudge left\r\nẋ=-0.33 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.09 rad\u001b[3;63H⮠ to restart\r\nȧ=1.83 rad/s\r\nu=-6.70\u001b[8;30H┌───────┐\u001b[9;30H|\u001b[38G│\u001b[10;30H|   M   │\u001b[11;30H|   \\   │\u001b[12;30H"]
[2.027135, "o", "└o--\\--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|   \\     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5\\     0.00     0.50\u001b[59G1.00     1.50\u001b[16;34H"]
[2.027443, "o", "\\\n\b\\\b\b"]
[2.04784, "o", "\u001b[H\u001b[2Jx=-0.30 m\u001b[1;63H← to nudge left\r\nẋ=-0.35 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.13 rad\u001b[3;63H⮠ to restart\r\nȧ=1.83 rad/s\r\nu=-6.86\u001b[8;30H┌───────┐\u001b[9;30H|\u001b[38G│\u001b[10;30H|   M   │\u001b[11;30H|   \\   │\u001b[12;30H└o--\\--o┘\r\n"]
[2.048163, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|   \\     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5\\     0.00     0.50\u001b[59G1.00     1.50\u001b[16;34H\\\n\b"]
[2.048397, "o", "\\\\\b\b\b"]
[2.068527, "o", "\u001b[H\u001b[2Jx=-0.31 m\u001b[1;63H← to nudge left\r\nẋ=-0.37 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.17 rad\u001b[3;63H⮠ to restart\r\nȧ=1.83 rad/s\r\nu=-7.03\u001b[8;30H┌───────┐\u001b[9;30H|\u001b[38G│\u001b[10;30H|   M   │\u001b[11;30H"]
[2.068655, "o", "|   \\   │\u001b[12;30H└o--\\--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|   \\     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n "]
[2.069059, "o", "-2.00    -1.50     -1.00    -0.5\\     0.00     0.50\u001b[59G1.00     1.50\u001b[16;34H\\\\\n\b\\\b\b\b"]
[2.089453, "o", "\u001b[H\u001b[2Jx=-0.32 m\u001b[1;63H← to nudge left\r\nẋ=-0.39 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.21 rad\u001b[3;63H⮠ to restart\r\nȧ=1.82 rad/s\r\nu=-7.22\u001b[8;29H┌───────┐\u001b[9;29H|\u001b[37G│\u001b[10;29H|   M   │\u001b[11;29H"]
[2.089856, "o", "|    \\  │\u001b[12;29H└o---\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|   \\     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5\\     0.00     0.50\u001b[59G1.00     1.50\u001b[16;34H\\\\\n\b\\\b\b\b"]
[2.11027, "o", "\u001b[H\u001b[2Jx=-0.33 m\u001b[1;63H← to nudge left\r\nẋ=-0.40 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.24 rad\u001b[3;63H⮠ to restart\r\nȧ=1.80 rad/s\r\nu=-7.44\u001b[8;29H┌───────┐\u001b[9;29H"]
[2.110383, "o", "|\u001b[37G│\u001b[10;29H|   M   │\u001b[11;29H|   \\   │\u001b[12;29H└o---\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H"]
[2.110677, "o", "|\u001b[14;30H|   \\     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5\\     0.00     0.50\u001b[59G1.00     1.50\u001b[16;34H\\\\\n\b\\\b\b\b"]
[2.131279, "o", "\u001b[H\u001b[2Jx=-0.34 m\u001b[1;63H← to nudge left\r\nẋ=-0.42 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.28 rad\u001b[3;63H⮠ to restart\r\nȧ=1.79 rad/s\r\nu=-7.67\u001b[8;29H┌───────┐\u001b[9;29H|\u001b[37G│\u001b[10;29H|   M   │\u001b[11;29H|   \\   │\u001b[12;29H"]
[2.131635, "o", "└o--\\\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|   \\     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5\\\\    0.00     0.50\u001b[59G1.00     1.50\u001b[16;35H\\\n\b"]
[2.131948, "o", "\\\b\b\b"]
[2.152169, "o", "\u001b[H\u001b[2Jx=-0.35 m\u001b[1;63H← to nudge left\r\nẋ=-0.43 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.32 rad\u001b[3;63H⮠ to restart\r\nȧ=1.76 rad/s\r\nu=-7.92\u001b[8;29H┌───────┐\u001b[9;29H|\u001b[37G"]
[2.152292, "o", "│\u001b[10;29H|   M   │\u001b[11;29H|   \\   │\u001b[12;29H└o--\\\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|   \\     |\u001b[14;49H"]
[2.152373, "o", "|\u001b[14;59H|\u001b[14;68H|\r\n "]
[2.152873, "o", "-2.00    -1.50     -1.00    -0.5\\\\    0.00     0.50\u001b[59G1.00     1.50\u001b[16;35H\\\n\b\\\b\b"]
[2.172919, "o", "\u001b[H\u001b[2Jx=-0.36 m\u001b[1;63H← to nudge left\r\nẋ=-0.44 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.35 rad\u001b[3;63H⮠ to restart\r\nȧ=1.74 rad/s\r\n"]
[2.17305, "o", "u=-8.19\u001b[8;29H┌───────┐\u001b[9;29H|\u001b[37G│\u001b[10;29H|   M   │\u001b[11;29H|   \\   │\u001b[12;29H└o--\\--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H"]
[2.173441, "o", "|\u001b[14;30H|   \\     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5\\\\    0.00     0.50\u001b[59G1.00     1.50\u001b[16;35H\\\n\b\b┌───┐"]
[2.194128, "o", "\u001b[H\u001b[2Jx=-0.37 m\u001b[1;63H← to nudge left\r\nẋ=-0.45 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.39 rad\u001b[3;63H⮠ to restart\r\nȧ=1.71 rad/s\r\nu=-8.47\u001b[8;29H"]
[2.194254, "o", "┌───────┐\u001b[9;29H|\u001b[37G│\u001b[10;29H|   M   │\u001b[11;29H|   \\   │\u001b[12;29H└o--\\--o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|   \\     |\u001b[14;49H|\u001b[14;59H"]
[2.194663, "o", "|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5\\\\    0.00     0.50\u001b[59G1.00     1.50\u001b[16;35H\\\n\b\b┌───┐"]
[2.215276, "o", "\u001b[H\u001b[2Jx=-0.38 m\u001b[1;63H← to nudge left\r\nẋ=-0.46 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.43 rad\u001b[3;63H⮠ to restart\r\n"]
[2.215401, "o", "ȧ=1.67 rad/s\r\nu=-8.77\u001b[8;28H┌───────┐\u001b[9;28H|\u001b[36G│\u001b[10;28H|   M   │\u001b[11;28H|    \\  │\u001b[12;28H└o---\\-o┘\r\n"]
[2.21569, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|   \\     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5\\\\    0.00     0.50\u001b[59G1.00     1.50\u001b[16;35H\\\n\b\b┌───┐"]
[2.236253, "o", "\u001b[H\u001b[2Jx=-0.39 m\u001b[1;63H← to nudge left\r\nẋ=-0.47 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.46 rad\u001b[3;63H⮠ to restart\r\n"]
[2.236377, "o", "ȧ=1.64 rad/s\r\nu=-9.09\u001b[8;28H┌───────┐\u001b[9;28H|\u001b[36G│\u001b[10;28H|   M   │\u001b[11;28H|    \\  │\u001b[12;28H"]
[2.236903, "o", "└o---\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|   \\     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5\\\\    0.00     0.50\u001b[59G1.00     1.50\u001b[16;35H\\\n\b\b┌───┐"]
[2.257328, "o", "\u001b[H\u001b[2Jx=-0.40 m\u001b[1;63H← to nudge left\r\nẋ=-0.48 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.49 rad\u001b[3;63H⮠ to restart\r\nȧ=1.59 rad/s\r\n"]
[2.257716, "o", "u=-9.42\u001b[8;28H┌───────┐\u001b[9;28H|\u001b[36G│\u001b[10;28H|   M   │\u001b[11;28H|   \\\\  │\u001b[12;28H└o---\\-o┘\r\n"]
[2.257974, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|   \\     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5\\\\    0.00     0.50\u001b[59G1.00     1.50\u001b[16;35H\\\n\b\b┌───┐"]
[2.278289, "o", "\u001b[H\u001b[2Jx=-0.41 m\u001b[1;63H← to nudge left\r\nẋ=-0.50 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.53 rad\u001b[3;63H⮠ to restart\r\nȧ=1.55 rad/s\r\n"]
[2.278423, "o", "u=-9.76\u001b[8;28H┌───────┐\u001b[9;28H|\u001b[36G│\u001b[10;28H|   M   │\u001b[11;28H|   \\   │\u001b[12;28H└o--\\\\-o┘\r\n"]
[2.278778, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|   \\     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5\\\\    0.00     0.50\u001b[59G1.00     1.50\u001b[16;35H\\\n\b\b┌───┐"]
[2.299424, "o", "\u001b[H\u001b[2Jx=-0.42 m\u001b[1;63H← to nudge left\r\nẋ=-0.51 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.56 rad\u001b[3;63H⮠ to restart\r\nȧ=1.50 rad/s\r\n"]
[2.299553, "o", "u=-10.11\u001b[8;28H┌───────┐\u001b[9;28H|\u001b[36G│\u001b[10;28H|   M   │\u001b[11;28H|   \\   │\u001b[12;28H└o--\\\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|  \\\\     |\u001b[14;49H|\u001b[14;59H"]
[2.299946, "o", "|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5\\\\    0.00     0.50\u001b[59G1.00     1.50\u001b[16;35H\\\n\b\b┌───┐"]
[2.320369, "o", "\u001b[H\u001b[2Jx=-0.43 m\u001b[1;63H← to nudge left\r\nẋ=-0.52 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.59 rad\u001b[3;63H⮠ to restart\r\nȧ=1.46 rad/s\r\nu=-10.46\u001b[8;27H┌───────┐\u001b[9;27H|\u001b[35G│\u001b[10;27H|   M   │\u001b[11;27H|    \\  │\u001b[12;27H"]
[2.32049, "o", "└o---\\\\o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|  \\\\     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5\\\\    0.00     0.50\u001b[59G1.00     1.50\u001b[16;35H"]
[2.320914, "o", "\\\n\b\b┌───┐"]
[2.341328, "o", "\u001b[H\u001b[2Jx=-0.44 m\u001b[1;63H← to nudge left\r\nẋ=-0.53 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.62 rad\u001b[3;63H⮠ to restart\r\nȧ=1.40 rad/s\r\nu=-10.82\u001b[8;27H┌───────┐\u001b[9;27H"]
[2.341446, "o", "|\u001b[35G│\u001b[10;27H|   M   │\u001b[11;27H|    \\  │\u001b[12;27H└o---\\\\o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|  \\\\     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H"]
[2.341873, "o", "|\r\n -2.00    -1.50     -1.00    -0.5\\\\    0.00     0.50\u001b[59G1.00     1.50\u001b[16;34H┌───┐\n\u001b[34G| m |"]
[2.362329, "o", "\u001b[H\u001b[2Jx=-0.45 m\u001b[1;63H← to nudge left\r\nẋ=-0.55 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.65 rad\u001b[3;63H⮠ to restart\r\nȧ=1.35 rad/s\r\nu=-11.18\u001b[8;27H┌───────┐\u001b[9;27H|\u001b[35G│\u001b[10;27H|   M   │\u001b[11;27H|   \\\\  │\u001b[12;27H"]
[2.362475, "o", "└o---\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|  \\\\     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5\\\\    0.00     0.50\u001b[59G1.00     1.50\u001b[16;34H"]
[2.362769, "o", "┌───┐\n\u001b[34G| m |"]
[2.383338, "o", "\u001b[H\u001b[2Jx=-0.46 m\u001b[1;63H← to nudge left\r\nẋ=-0.56 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.67 rad\u001b[3;63H⮠ to restart\r\nȧ=1.29 rad/s\r\nu=-11.54\u001b[8;27H┌───────┐\u001b[9;27H|\u001b[35G│\u001b[10;27H|   M   │\u001b[11;27H|   \\\\  │\u001b[12;27H"]
[2.383457, "o", "└o---\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|  \\\\     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5\\\\    0.00     0.50\u001b[59G"]
[2.383887, "o", "1.00     1.50\u001b[16;34H┌───┐\n\u001b[34G| m |"]
[2.404307, "o", "\u001b[H\u001b[2Jx=-0.47 m\u001b[1;63H← to nudge left\r\nẋ=-0.58 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.70 rad\u001b[3;63H⮠ to restart\r\nȧ=1.24 rad/s\r\nu=-11.90\u001b[8;26H┌───────┐\u001b[9;26H|\u001b[34G│\u001b[10;26H|   M   │\u001b[11;26H"]
[2.404433, "o", "|    \\  │\u001b[12;26H└o---\\\\o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|  \\\\     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n "]
[2.404838, "o", "-2.00    -1.50     -1.00    -0.5\\\\    0.00     0.50\u001b[59G1.00     1.50\u001b[16;34H┌───┐\n\u001b[34G| m |"]
[2.42501, "o", "\u001b[H\u001b[2Jx=-0.49 m\u001b[1;63H← to nudge left\r\nẋ=-0.60 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.72 rad\u001b[3;63H⮠ to restart\r\nȧ=1.18 rad/s\r\nu=-12.26\u001b[8;26H┌───────┐\u001b[9;26H|\u001b[34G│\u001b[10;26H"]
[2.42515, "o", "|   M   │\u001b[11;26H|    \\  │\u001b[12;26H└o---\\\\o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|  \\\\     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H"]
[2.425452, "o", "|\r\n -2.00    -1.50     -1.00    -0.5\\\\    0.00     0.50\u001b[59G1.00     1.50\u001b[16;34H┌───┐\n\u001b[34G| m |"]
[2.446187, "o", "\u001b[H\u001b[2Jx=-0.50 m\u001b[1;63H← to nudge left\r\nẋ=-0.62 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.75 rad\u001b[3;63H⮠ to restart\r\nȧ=1.12 rad/s\r\nu=-12.60\u001b[8;26H┌───────┐\u001b[9;26H|\u001b[34G│\u001b[10;26H|   M   │\u001b[11;26H|    \\  │\u001b[12;26H"]
[2.446307, "o", "└o---\\\\o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|  \\\\     |\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5\\\\    0.00     0.50\u001b[59G1.00     1.50\u001b[16;34H"]
[2.446724, "o", "┌───┐\n\u001b[34G| m |"]
[2.467013, "o", "\u001b[H\u001b[2Jx=-0.51 m\u001b[1;63H← to nudge left\r\nẋ=-0.64 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.77 rad\u001b[3;63H⮠ to restart\r\nȧ=1.06 rad/s\r\nu=-12.94\u001b[8;26H┌───────┐\u001b[9;26H|\u001b[34G"]
[2.467674, "o", "│\u001b[10;26H|   M   │\u001b[11;26H|   \\\\  │\u001b[12;26H└o---\\\\o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|  \\\\     |\u001b[14;49H|\u001b[14;59H"]
[2.467791, "o", "|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5\\\\    0.00     0.50\u001b[59G1.00     1.50\u001b[16;34H┌───┐\n\u001b[34G| m |"]
[2.487781, "o", "\u001b[H\u001b[2Jx=-0.53 m\u001b[1;63H← to nudge left\r\nẋ=-0.67 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.79 rad\u001b[3;63H⮠ to restart\r\nȧ=0.99 rad/s\r\nu=-13.27\u001b[8;25H┌───────┐\u001b[9;25H|\u001b[33G│\u001b[10;25H|   M   │\u001b[11;25H"]
[2.487907, "o", "|    \\  │\u001b[12;25H└o----\\o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|  \\\u001b[40G|\u001b[14;49H|\u001b[14;59H"]
[2.488193, "o", "|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.5┌───┐ 0.00     0.50\u001b[59G1.00     1.50\u001b[16;34H| m |\n\u001b[34G└───┘"]
[2.508692, "o", "\u001b[H\u001b[2Jx=-0.54 m\u001b[1;63H← to nudge left\r\nẋ=-0.69 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.81 rad\u001b[3;63H⮠ to restart\r\nȧ=0.93 rad/s\r\nu=-13.58\u001b[8;25H"]
[2.508816, "o", "┌───────┐\u001b[9;25H|\u001b[33G│\u001b[10;25H|   M   │\u001b[11;25H|    \\  │\u001b[12;25H└o---\\\\o┘\r\n"]
[2.509181, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H| \\\\\u001b[40G|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.┌───┐  0.00     0.50\u001b[59G1.00     1.50\u001b[16;33H| m |\n\u001b[33G└───┘"]
[2.529696, "o", "\u001b[H\u001b[2Jx=-0.56 m\u001b[1;63H← to nudge left\r\nẋ=-0.72 m/s\u001b[2;63H→ to nudge right\u001b[3;1H"]
[2.52982, "o", "a=0.83 rad\u001b[3;63H⮠ to restart\r\nȧ=0.87 rad/s\r\nu=-13.88\u001b[8;25H┌───────┐\u001b[9;25H|\u001b[33G│\u001b[10;25H|   M   │\u001b[11;25H|    \\  │\u001b[12;25H└o---\\\\o┘\r\n"]
[2.530049, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H"]
[2.53039, "o", "| \\\\\u001b[40G|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.┌───┐  0.00     0.50\u001b[59G1.00     1.50\u001b[16;33H| m |\n\u001b[33G└───┘"]
[2.551329, "o", "\u001b[H\u001b[2Jx=-0.57 m\u001b[1;63H← to nudge left\r\nẋ=-0.75 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.84 rad\u001b[3;63H⮠ to restart\r\nȧ=0.80 rad/s\r\nu=-14.17\u001b[8;25H┌───────┐\u001b[9;25H|\u001b[33G"]
[2.55145, "o", "│\u001b[10;25H|   M   │\u001b[11;25H|   \\\\  │\u001b[12;25H└o---\\\\o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H"]
[2.551826, "o", "| \\\\\u001b[40G|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.┌───┐  0.00     0.50\u001b[59G1.00     1.50\u001b[16;33H| m |\n\u001b[33G└───┘"]
[2.572312, "o", "\u001b[H\u001b[2Jx=-0.59 m\u001b[1;63H← to nudge left\r\nẋ=-0.78 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.86 rad\u001b[3;63H⮠ to restart\r\n"]
[2.572683, "o", "ȧ=0.73 rad/s\r\nu=-14.44\u001b[8;24H┌───────┐\u001b[9;24H|\u001b[32G│\u001b[10;24H|   M   │\u001b[11;24H|    \\  │\u001b[12;24H"]
[2.572824, "o", "└o----\\\\┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H| \\\\\u001b[40G|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.┌───┐  0.00     0.50\u001b[59G1.00     1.50\u001b[16;33H| m |\n\u001b[33G└───┘"]
[2.593608, "o", "\u001b[H\u001b[2Jx=-0.61 m\u001b[1;63H← to nudge left\r\nẋ=-0.81 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.87 rad\u001b[3;63H⮠ to restart\r\nȧ=0.66 rad/s\r\n"]
[2.594076, "o", "u=-14.69\u001b[8;24H┌───────┐\u001b[9;24H|\u001b[32G│\u001b[10;24H|   M   │\u001b[11;24H|    \\  │\u001b[12;24H└o---\\\\o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H| \\\\\u001b[40G|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0.┌───┐  0.00     0.50\u001b[59G1.00     1.50\u001b[16;33H| m |\n\u001b[33G└───┘"]
[2.614412, "o", "\u001b[H\u001b[2Jx=-0.62 m\u001b[1;63H← to nudge left\r\nẋ=-0.84 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.89 rad\u001b[3;63H⮠ to restart\r\nȧ=0.59 rad/s\r\nu=-14.92\u001b[8;24H┌───────┐\u001b[9;24H|\u001b[32G"]
[2.614557, "o", "│\u001b[10;24H|   M   │\u001b[11;24H|   \\\\  │\u001b[12;24H└o---\\\\o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|\\\\\\\u001b[40G"]
[2.614876, "o", "|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0┌───┐   0.00     0.50\u001b[59G1.00     1.50\u001b[16;32H| m |\n\u001b[32G└───┘"]
[2.63543, "o", "\u001b[H\u001b[2Jx=-0.64 m\u001b[1;63H← to nudge left\r\nẋ=-0.87 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.90 rad\u001b[3;63H⮠ to restart\r\nȧ=0.52 rad/s\r\n"]
[2.63556, "o", "u=-15.12\u001b[8;23H┌───────┐\u001b[9;23H|\u001b[31G│\u001b[10;23H|   M   │\u001b[11;23H|    \\\\ │\u001b[12;23H└o----\\\\┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H"]
[2.635959, "o", "|\\\\\u001b[40G|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0┌───┐   0.00     0.50\u001b[59G1.00     1.50\u001b[16;32H| m |\n\u001b[32G└───┘"]
[2.656515, "o", "\u001b[H\u001b[2Jx=-0.66 m\u001b[1;63H← to nudge left\r\nẋ=-0.91 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.91 rad\u001b[3;63H⮠ to restart\r\nȧ=0.45 rad/s\r\nu=-15.30\u001b[8;23H┌───────┐\u001b[9;23H|\u001b[31G│\u001b[10;23H"]
[2.656646, "o", "|   M   │\u001b[11;23H|    \\  │\u001b[12;23H└o---\\\\o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H|\\\\\u001b[40G"]
[2.657092, "o", "|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -0┌───┐   0.00     0.50\u001b[59G1.00     1.50\u001b[16;32H| m |\n\u001b[32G└───┘"]
[2.677596, "o", "\u001b[H\u001b[2Jx=-0.68 m\u001b[1;63H← to nudge left\r\nẋ=-0.94 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.92 rad\u001b[3;63H⮠ to restart\r\nȧ=0.38 rad/s\r\n"]
[2.677979, "o", "u=-15.46\u001b[8;23H┌───────┐\u001b[9;23H|\u001b[31G│\u001b[10;23H|   M   │\u001b[11;23H|   \\\\  │\u001b[12;23H└o---\\\\o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H\\\\\\\u001b[40G|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -┌───┐    0.00     0.50\u001b[59G1.00     1.50\u001b[16;31H| m |\n\u001b[31G└───┘"]
[2.698413, "o", "\u001b[H\u001b[2Jx=-0.70 m\u001b[1;63H← to nudge left\r\nẋ=-0.98 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.92 rad\u001b[3;63H⮠ to restart\r\nȧ=0.31 rad/s\r\nu=-15.59\u001b[8;22H┌───────┐\u001b[9;22H|\u001b[30G│\u001b[10;22H"]
[2.698533, "o", "|   M   │\u001b[11;22H|    \\  │\u001b[12;22H└o----\\\\┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H\\\\\u001b[14;40H|\u001b[14;49H|\u001b[14;59H"]
[2.698873, "o", "|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -┌───┐    0.00     0.50\u001b[59G1.00     1.50\u001b[16;31H| m |\n\u001b[31G└───┘"]
[2.719258, "o", "\u001b[H\u001b[2Jx=-0.72 m\u001b[1;63H← to nudge left\r\nẋ=-1.02 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.93 rad\u001b[3;63H⮠ to restart\r\nȧ=0.24 rad/s\r\n"]
[2.71938, "o", "u=-15.70\u001b[8;22H┌───────┐\u001b[9;22H|\u001b[30G│\u001b[10;22H|   M   │\u001b[11;22H|   \\\\  │\u001b[12;22H└o---\\\\o┘\r\n"]
[2.719746, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[14;30H\\\\\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    -┌───┐    0.00     0.50\u001b[59G1.00     1.50\u001b[16;31H| m |\n\u001b[31G└───┘"]
[2.740043, "o", "\u001b[H\u001b[2Jx=-0.74 m\u001b[1;63H← to nudge left\r\nẋ=-1.05 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.93 rad\u001b[3;63H⮠ to restart\r\nȧ=0.17 rad/s\r\n"]
[2.740162, "o", "u=-15.78\u001b[8;21H┌───────┐\u001b[9;21H|\u001b[29G│\u001b[10;21H|   M   │\u001b[11;21H|    \\\\ │\u001b[12;21H└o----\\\\┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H"]
[2.740431, "o", "|\u001b[29G\\\\\\\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    ┌───┐     0.00     0.50\u001b[59G1.00     1.50\u001b[16;30H| m |\n\u001b[30G└───┘"]
[2.761106, "o", "\u001b[H\u001b[2Jx=-0.77 m\u001b[1;63H← to nudge left\r\nẋ=-1.09 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.93 rad\u001b[3;63H⮠ to restart\r\n"]
[2.761486, "o", "ȧ=0.10 rad/s\r\nu=-15.84\u001b[8;21H┌───────┐\u001b[9;21H|\u001b[29G│\u001b[10;21H|   M   │\u001b[11;21H|    \\  │\u001b[12;21H└o---\\\\\\┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[29G\\\\\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00    ┌───┐     0.00     0.50\u001b[59G"]
[2.761768, "o", "1.00     1.50\u001b[16;30H| m |\n\u001b[30G└───┘"]
[2.78211, "o", "\u001b[H\u001b[2Jx=-0.79 m\u001b[1;63H← to nudge left\r\nẋ=-1.13 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.93 rad\u001b[3;63H⮠ to restart\r\nȧ=0.03 rad/s\r\nu=-15.86\u001b[8;20H┌───────┐\u001b[9;20H|\u001b[28G│\u001b[10;20H|   M   │\u001b[11;20H|    \\\\ │\u001b[12;20H"]
[2.782483, "o", "└o----\\\\┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[29G\\\\\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00   ┌───┐0     0.00     0.50\u001b[59G1.00     1.50\u001b[16;29H| m |\n\u001b[29G└───┘"]
[2.802856, "o", "\u001b[H\u001b[2Jx=-0.82 m\u001b[1;63H← to nudge left\r\nẋ=-1.16 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.93 rad\u001b[3;63H"]
[2.802993, "o", "⮠ to restart\r\nȧ=-0.04 rad/s\r\nu=-15.87\u001b[8;20H┌───────┐\u001b[9;20H|\u001b[28G"]
[2.803261, "o", "│\u001b[10;20H|   M   │\u001b[11;20H|    \\  │\u001b[12;20H└o---\\\\\\┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[28G\\\\|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H"]
[2.803661, "o", "|\r\n -2.00    -1.50     -1.00   ┌───┐0     0.00     0.50\u001b[59G1.00     1.50\u001b[16;29H| m |\n\u001b[29G└───┘"]
[2.823593, "o", "\u001b[H\u001b[2Jx=-0.84 m\u001b[1;63H← to nudge left\r\nẋ=-1.08 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.93 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.15 rad/s\r\nu=15.84\u001b[8;20H┌───────┐\u001b[9;20H|\u001b[28G│\u001b[10;20H|   M   │\u001b[11;20H|   \\\\  │\u001b[12;20H"]
[2.82363, "o", "└o---\\\\o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|\u001b[28G\\\\|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n "]
[2.823858, "o", "-2.00    -1.50     -1.00  ┌───┐50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;28H| m |\n\u001b[28G└───┘"]
[2.844033, "o", "\u001b[H\u001b[2Jx=-0.86 m\u001b[1;63H← to nudge left\r\nẋ=-1.01 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.92 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.25 rad/s\r\nu=15.78\u001b[8;19H┌───────┐\u001b[9;19H|\u001b[27G│\u001b[10;19H|   M   │\u001b[11;19H|    \\  │\u001b[12;19H└o----\\\\┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|     \\\\ |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00  ┌───┐50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;28H| m |\n\u001b[28G└───┘"]
[2.864479, "o", "\u001b[H\u001b[2Jx=-0.88 m\u001b[1;63H← to nudge left\r\nẋ=-0.93 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.92 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.35 rad/s\r\nu=15.71\u001b[8;19H┌───────┐\u001b[9;19H|\u001b[27G│\u001b[10;19H|   M   │\u001b[11;19H|    \\  │\u001b[12;19H└o---\\\\o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|     \\\\ |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00  ┌───┐50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;28H| m |\n\u001b[28G└───┘"]
[2.88491, "o", "\u001b[H\u001b[2Jx=-0.89 m\u001b[1;63H← to nudge left\r\nẋ=-0.85 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.91 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.46 rad/s\r\nu=15.60\u001b[8;18H┌───────┐\u001b[9;18H|\u001b[26G│\u001b[10;18H|   M   │\u001b[11;18H|    \\\\ │\u001b[12;18H└o----\\\\┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|    \\\\\\ |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00 ┌───┐.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;27H"]
[2.884968, "o", "| m |\n\u001b[27G└───┘"]
[2.905442, "o", "\u001b[H\u001b[2Jx=-0.91 m\u001b[1;63H← to nudge left\r\nẋ=-0.77 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.90 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.56 rad/s\r\nu=15.48\u001b[8;18H┌───────┐\u001b[9;18H|\u001b[26G│\u001b[10;18H|   M   │\u001b[11;18H|    \\  │\u001b[12;18H└o---\\\\\\┘\r\n"]
[2.90572, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|    \\\\  |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00 ┌───┐.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;27H| m |\n\u001b[27G└───┘"]
[2.926099, "o", "\u001b[H\u001b[2Jx=-0.92 m\u001b[1;63H← to nudge left\r\nẋ=-0.69 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.88 rad\u001b[3;63H⮠ to restart\r\nȧ=-0.66 rad/s\r\nu=15.34\u001b[8;18H┌───────┐\u001b[9;18H"]
[2.926479, "o", "|\u001b[26G│\u001b[10;18H|   M   │\u001b[11;18H|    \\  │\u001b[12;18H└o---\\\\o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|    \\\\  |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00┌───┐0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;26H| m |\n\u001b[26G└───┘"]
[2.946835, "o", "\u001b[H\u001b[2Jx=-0.94 m\u001b[1;63H← to nudge left\r\nẋ=-0.61 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.87 rad\u001b[3;63H⮠ to restart\r\n"]
[2.946951, "o", "ȧ=-0.77 rad/s\r\nu=15.18\u001b[8;18H┌───────┐\u001b[9;18H|\u001b[26G│\u001b[10;18H|   M   │\u001b[11;18H|   \\\\  │\u001b[12;18H└o---\\\\o┘\r\n"]
[2.947035, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|   \\\\   |\u001b[14;40H|\u001b[14;49H"]
[2.947507, "o", "|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00┌───┐0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;26H| m |\n\u001b[26G└───┘"]
[2.968167, "o", "\u001b[H\u001b[2Jx=-0.95 m\u001b[1;63H← to nudge left\r\nẋ=-0.53 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.85 rad\u001b[3;63H⮠ to restart\r\n"]
[2.968499, "o", "ȧ=-0.87 rad/s\r\nu=15.00\u001b[8;17H┌───────┐\u001b[9;17H|\u001b[25G│\u001b[10;17H|   M   │\u001b[11;17H|    \\\\ │\u001b[12;17H└o----\\\\┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|   \\\\   |\u001b[14;40H"]
[2.968805, "o", "|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00┌───┐0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;26H| m |\n\u001b[26G└───┘"]
[2.989158, "o", "\u001b[H\u001b[2Jx=-0.96 m\u001b[1;63H← to nudge left\r\nẋ=-0.45 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.83 rad\u001b[3;63H"]
[2.989447, "o", "⮠ to restart\r\nȧ=-0.98 rad/s\r\nu=14.79\u001b[8;17H┌───────┐\u001b[9;17H|\u001b[25G│\u001b[10;17H|   M   │\u001b[11;17H|    \\  │\u001b[12;17H"]
[2.989716, "o", "└o---\\\\o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|   \\\\   |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.00┌───┐0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;26H| m |\n\u001b[26G└───┘"]
[3.01012, "o", "\u001b[H\u001b[2Jx=-0.97 m\u001b[1;63H← to nudge left\r\nẋ=-0.37 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.80 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.08 rad/s\r\n"]
[3.010467, "o", "u=14.58\u001b[8;17H┌───────┐\u001b[9;17H|\u001b[25G│\u001b[10;17H|   M   │\u001b[11;17H|    \\  │\u001b[12;17H└o---\\\\o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m"]
[3.010799, "o", "\u001b(B|\u001b[14;11H|\u001b[14;21H|  \\\\    |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.0┌───┐-0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;25H| m |\n\u001b[25G└───┘"]
[3.030985, "o", "\u001b[H\u001b[2Jx=-0.97 m\u001b[1;63H← to nudge left\r\nẋ=-0.29 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.78 rad\u001b[3;63H⮠ to restart\r\n"]
[3.031112, "o", "ȧ=-1.18 rad/s\r\nu=14.36\u001b[8;17H┌───────┐\u001b[9;17H|\u001b[25G│\u001b[10;17H|   M   │\u001b[11;17H|    \\  │\u001b[12;17H└o---\\\\o┘\r\n"]
[3.031542, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|  \\\\    |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.0\\\\   -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;25H┌───┐\n\u001b[25G| m |"]
[3.051914, "o", "\u001b[H\u001b[2Jx=-0.98 m\u001b[1;63H← to nudge left\r\nẋ=-0.21 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.75 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.28 rad/s\r\n"]
[3.05205, "o", "u=14.13\u001b[8;17H┌───────┐\u001b[9;17H|\u001b[25G│\u001b[10;17H|   M   │\u001b[11;17H|    \\  │\u001b[12;17H└o---\\\\o┘\r\n"]
[3.05254, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|  \\\\    |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.0\\\\   -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;25H┌───┐\n\u001b[25G| m |"]
[3.072954, "o", "\u001b[H\u001b[2Jx=-0.98 m\u001b[1;63H← to nudge left\r\nẋ=-0.13 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.72 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.38 rad/s\r\nu=13.89\u001b[8;17H┌───────┐\u001b[9;17H"]
[3.073089, "o", "|\u001b[25G│\u001b[10;17H|   M   │\u001b[11;17H|   \\\\  │\u001b[12;17H└o---\\\\o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H|  \\     |\u001b[14;40H|\u001b[14;49H"]
[3.073458, "o", "|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.\\\\    -0.50     0.00     0.50\u001b[59G"]
[3.073786, "o", "1.00     1.50\u001b[16;25H┌───┐\n\u001b[25G| m |"]
[3.093831, "o", "\u001b[H\u001b[2Jx=-0.98 m\u001b[1;63H← to nudge left\r\nẋ=-0.05 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.69 rad\u001b[3;63H"]
[3.094022, "o", "⮠ to restart\r\nȧ=-1.48 rad/s\r\nu=13.66\u001b[8;17H┌───────┐\u001b[9;17H|\u001b[25G│\u001b[10;17H|   M   │\u001b[11;17H|   \\\\  │\u001b[12;17H└o---\\\\o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H"]
[3.09443, "o", "|\u001b[14;21H| \\\\     |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.\\\\    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;24H┌───┐\n\u001b[24G| m |"]
[3.114857, "o", "\u001b[H\u001b[2Jx=-0.98 m\u001b[1;63H← to nudge left\r\nẋ=0.03 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.66 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.58 rad/s\r\nu=13.44\u001b[8;17H┌───────┐\u001b[9;17H|\u001b[25G"]
[3.114979, "o", "│\u001b[10;17H|   M   │\u001b[11;17H|   \\\\  │\u001b[12;17H└o---\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H| \\\\     |\u001b[14;40H"]
[3.115274, "o", "|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.\\\\    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;24H┌───┐\n\u001b[24G| m |"]
[3.135888, "o", "\u001b[H\u001b[2Jx=-0.98 m\u001b[1;63H← to nudge left\r\nẋ=0.12 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.63 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.67 rad/s\r\n"]
[3.136015, "o", "u=13.22\u001b[8;17H┌───────┐\u001b[9;17H|\u001b[25G│\u001b[10;17H|   M   │\u001b[11;17H|   \\\\  │\u001b[12;17H└o---\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H"]
[3.136392, "o", "| \\\\     |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.\\\\    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;24H┌───┐\n\u001b[24G| m |"]
[3.156919, "o", "\u001b[H\u001b[2Jx=-0.97 m\u001b[1;63H← to nudge left\r\nẋ=0.20 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.59 rad\u001b[3;63H⮠ to restart\r\n"]
[3.157045, "o", "ȧ=-1.77 rad/s\r\nu=13.01\u001b[8;17H┌───────┐\u001b[9;17H|\u001b[25G│\u001b[10;17H|   M   │\u001b[11;17H|   \\\\  │\u001b[12;17H└o---\\-o┘\r\n"]
[3.15743, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H| \\\\     |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.\\0    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;24H\\\\\n\b\b┌───┐"]
[3.177744, "o", "\u001b[H\u001b[2Jx=-0.97 m\u001b[1;63H← to nudge left\r\nẋ=0.28 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.55 rad\u001b[3;63H"]
[3.178118, "o", "⮠ to restart\r\nȧ=-1.86 rad/s\r\nu=12.82\u001b[8;17H┌───────┐\u001b[9;17H|\u001b[25G│\u001b[10;17H|   M   │\u001b[11;17H|    \\  │\u001b[12;17H"]
[3.178474, "o", "└o---\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H| \\\\     |\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1.\\0    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;24H\\\\\n\b\b┌───┐"]
[3.198699, "o", "\u001b[H\u001b[2Jx=-0.96 m\u001b[1;63H← to nudge left\r\nẋ=0.36 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.51 rad\u001b[3;63H⮠ to restart\r\nȧ=-1.95 rad/s\r\n"]
[3.198824, "o", "u=12.66\u001b[8;17H┌───────┐\u001b[9;17H|\u001b[25G│\u001b[10;17H|   M   │\u001b[11;17H|    \\  │\u001b[12;17H└o---\\-o┘\r\n"]
[3.199322, "o", "\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H| \\\u001b[30G|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1\\\\0    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;24H\\\\\n\b\b\b┌───┐"]
[3.219743, "o", "\u001b[H\u001b[2Jx=-0.95 m\u001b[1;63H← to nudge left\r\nẋ=0.44 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.47 rad\u001b[3;63H"]
[3.219867, "o", "⮠ to restart\r\nȧ=-2.03 rad/s\r\nu=12.53\u001b[8;17H┌───────┐\u001b[9;17H|\u001b[25G│\u001b[10;17H|   M   │\u001b[11;17H|    \\  │\u001b[12;17H"]
[3.220164, "o", "└o---\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqq\u001b(B\\\\\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b(B\u001b[14;2H\u001b(0\u001b[0m\u001b(B|\u001b[14;11H|\u001b[14;21H| \\\u001b[30G|\u001b[14;40H|\u001b[14;49H|\u001b[14;59H|\u001b[14;68H|\r\n -2.00    -1.50     -1\\\\0    -0.50     0.00     0.50\u001b[59G1.00     1.50\u001b[16;24H\\\n\b\b┌───┐"]
[3.240769, "o", "\u001b[H\u001b[2Jx=-0.94 m\u001b[1;63H← to nudge left\r\nẋ=0.52 m/s\u001b[2;63H→ to nudge right\u001b[3;1Ha=0.42 rad\u001b[3;63H⮠ to restart\r\nȧ=-2.11 rad/s\r\n"]
[3.2409, "o", "u=12.42\u001b[8;18H┌───────┐\u001b[9;18H|\u001b[26G│\u001b[10;18H|   M   │\u001b[11;18H|   \\   │\u001b[12;18H└o--\\\\-o┘\r\n\u001b(0\u001b[0mqqqqqqqqqqqqqqqqqqqqqq
Download .txt
gitextract_gqnerqqf/

├── .github/
│   └── workflows/
│       ├── golangci-lint.yml
│       └── release.yml
├── .gitignore
├── .golangci.yml
├── .goreleaser.yml
├── .pre-commit-config.yaml
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── Taskfile.yml
├── cmd/
│   ├── termsvg/
│   │   ├── export/
│   │   │   └── export.go
│   │   ├── main.go
│   │   ├── main_windows.go
│   │   ├── play/
│   │   │   └── play.go
│   │   └── record/
│   │       └── record.go
│   └── themegen/
│       └── main.go
├── examples/
│   ├── 256colors.cast
│   ├── 444816.cast
│   ├── README.md
│   ├── htop.cast
│   ├── rgb.cast
│   └── session.cast
├── go.mod
├── go.sum
├── mise.toml
├── pkg/
│   ├── asciicast/
│   │   ├── asciicast.go
│   │   ├── event.go
│   │   └── testdata/
│   │       ├── TestMarshal.golden
│   │       └── TestUnmarshal.golden
│   ├── color/
│   │   ├── catalog.go
│   │   ├── catalog_test.go
│   │   ├── color.go
│   │   ├── colors.go
│   │   ├── colorsgen.go
│   │   └── palette.go
│   ├── ir/
│   │   ├── ir.go
│   │   ├── ir_test.go
│   │   └── processor.go
│   ├── progress/
│   │   └── progress.go
│   ├── raster/
│   │   ├── draw.go
│   │   ├── font.go
│   │   ├── paletted.go
│   │   ├── raster.go
│   │   ├── raster_test.go
│   │   ├── renderer.go
│   │   └── renderer_bench_test.go
│   ├── renderer/
│   │   ├── gif/
│   │   │   ├── renderer.go
│   │   │   └── renderer_test.go
│   │   ├── renderer.go
│   │   ├── svg/
│   │   │   ├── renderer.go
│   │   │   └── renderer_test.go
│   │   └── webm/
│   │       ├── renderer.go
│   │       └── renderer_test.go
│   ├── terminal/
│   │   └── terminal.go
│   └── theme/
│       ├── builtin.go
│       ├── generate.go
│       ├── loader.go
│       └── theme.go
├── scripts/
│   ├── install-termsvg.sh
│   └── update-filesize.sh
└── themes/
    ├── dracula.json
    ├── frappe.json
    ├── gruvbox-dark.json
    ├── gruvbox-light.json
    ├── latte.json
    ├── macchiato.json
    ├── mocha.json
    ├── monokai.json
    ├── nord.json
    ├── solarized-dark.json
    └── solarized-light.json
Download .txt
SYMBOL INDEX (297 symbols across 34 files)

FILE: cmd/termsvg/export/export.go
  type Cmd (line 25) | type Cmd struct
    method Run (line 41) | func (cmd *Cmd) Run() error {

FILE: cmd/termsvg/main.go
  type VersionFlag (line 12) | type VersionFlag
    method Decode (line 21) | func (v VersionFlag) Decode(_ *kong.DecodeContext) error { return nil }
    method IsBool (line 22) | func (v VersionFlag) IsBool() bool                       { return true }
    method BeforeApply (line 23) | func (v VersionFlag) BeforeApply(app *kong.Kong) error {
  function main (line 29) | func main() {

FILE: cmd/termsvg/main_windows.go
  type VersionFlag (line 20) | type VersionFlag
    method Decode (line 22) | func (v VersionFlag) Decode(_ *kong.DecodeContext) error { return nil }
    method IsBool (line 23) | func (v VersionFlag) IsBool() bool                       { return true }
    method BeforeApply (line 24) | func (v VersionFlag) BeforeApply(app *kong.Kong) error {
  function main (line 30) | func main() {

FILE: cmd/termsvg/play/play.go
  type Cmd (line 12) | type Cmd struct
    method Run (line 18) | func (cmd *Cmd) Run() error {
  function playback (line 33) | func playback(cast *asciicast.Cast, speed float64, maxIdle time.Duration...

FILE: cmd/termsvg/record/record.go
  type Cmd (line 19) | type Cmd struct
    method Run (line 27) | func (cmd *Cmd) Run() error {
    method save (line 49) | func (cmd *Cmd) save(events []asciicast.Event) error {
    method run (line 80) | func (cmd *Cmd) run() ([]asciicast.Event, error) {
  constant readSize (line 25) | readSize = 1024
  function handlePtySize (line 186) | func handlePtySize(ptmx *os.File) chan os.Signal {

FILE: cmd/themegen/main.go
  type ThemeData (line 19) | type ThemeData struct
  type ThemeInfo (line 26) | type ThemeInfo struct
  type TemplateData (line 36) | type TemplateData struct
  constant defaultRGBA (line 42) | defaultRGBA      = "{R: 0, G: 0, B: 0, A: 255}"
  constant defaultRGBAPlain (line 43) | defaultRGBAPlain = "R: 0, G: 0, B: 0, A: 255"
  constant builtinTemplate (line 46) | builtinTemplate = `// Code generated by themegen. DO NOT EDIT.
  function colorToGo (line 92) | func colorToGo(hex string) string {
  function main (line 123) | func main() {
  function parseThemeFile (line 195) | func parseThemeFile(path string) (ThemeInfo, error) {
  function toVarName (line 241) | func toVarName(name string) string {
  function hexToRGBA (line 252) | func hexToRGBA(hex string) string {

FILE: pkg/asciicast/asciicast.go
  type ThemeInfo (line 18) | type ThemeInfo struct
  type Header (line 26) | type Header struct
    method CaptureEnv (line 63) | func (h *Header) CaptureEnv() {
  type Cast (line 40) | type Cast struct
    method Marshal (line 71) | func (c *Cast) Marshal() ([]byte, error) {
    method ToRelativeTime (line 109) | func (c *Cast) ToRelativeTime() {
    method CapRelativeTime (line 120) | func (c *Cast) CapRelativeTime(limit float64) {
    method ToAbsoluteTime (line 130) | func (c *Cast) ToAbsoluteTime() {
    method AdjustSpeed (line 141) | func (c *Cast) AdjustSpeed(speed float64) {
    method Compress (line 148) | func (c *Cast) Compress() {
    method fromJSON (line 170) | func (c *Cast) fromJSON(data string) error {
    method WriteTo (line 207) | func (c *Cast) WriteTo(w io.Writer) (int64, error) {
  function New (line 46) | func New() *Cast {
  function Unmarshal (line 92) | func Unmarshal(data []byte) (*Cast, error) {
  function Parse (line 198) | func Parse(r io.Reader) (*Cast, error) {

FILE: pkg/asciicast/event.go
  type EventType (line 8) | type EventType
  type Event (line 11) | type Event struct
    method UnmarshalJSON (line 23) | func (e *Event) UnmarshalJSON(data []byte) error {
    method MarshalJSON (line 55) | func (e *Event) MarshalJSON() ([]byte, error) {
  constant Input (line 18) | Input  EventType = "i"
  constant Output (line 19) | Output EventType = "o"

FILE: pkg/color/catalog.go
  type ID (line 9) | type ID
  type Catalog (line 13) | type Catalog struct
    method Register (line 55) | func (c *Catalog) Register(col Color, palette *Palette) ID {
    method Resolved (line 81) | func (c *Catalog) Resolved(id ID) color.RGBA {
    method IsDefault (line 89) | func (c *Catalog) IsDefault(id ID) bool {
    method All (line 94) | func (c *Catalog) All() map[ID]color.RGBA {
    method Count (line 99) | func (c *Catalog) Count() int {
    method DefaultForeground (line 104) | func (c *Catalog) DefaultForeground() color.RGBA {
    method DefaultBackground (line 109) | func (c *Catalog) DefaultBackground() color.RGBA {
    method GenerateClassNames (line 115) | func (c *Catalog) GenerateClassNames() map[ID]string {
  type colorKey (line 29) | type colorKey struct
  type idGenerator (line 34) | type idGenerator struct
    method Next (line 131) | func (gen *idGenerator) Next() string {
  constant DefaultID (line 39) | DefaultID ID = 0
  function NewCatalog (line 42) | func NewCatalog(defaultFG, defaultBG color.RGBA) *Catalog {
  function newIDGenerator (line 127) | func newIDGenerator() *idGenerator {

FILE: pkg/color/catalog_test.go
  function TestCatalog_Register (line 8) | func TestCatalog_Register(t *testing.T) {
  function TestCatalog_Resolved (line 45) | func TestCatalog_Resolved(t *testing.T) {
  function TestCatalog_GenerateClassNames (line 67) | func TestCatalog_GenerateClassNames(t *testing.T) {
  function TestCatalog_DefaultColors (line 97) | func TestCatalog_DefaultColors(t *testing.T) {
  function TestCatalog_IsDefault (line 110) | func TestCatalog_IsDefault(t *testing.T) {
  function TestIDGenerator_Sequence (line 125) | func TestIDGenerator_Sequence(t *testing.T) {
  function TestIDGenerator_LongSequence (line 143) | func TestIDGenerator_LongSequence(t *testing.T) {

FILE: pkg/color/color.go
  type Type (line 9) | type Type
  type Color (line 12) | type Color struct
    method ToRGBA (line 38) | func (c Color) ToRGBA(palette *Palette) color.RGBA {
    method ToHex (line 52) | func (c Color) ToHex(palette *Palette) string {
  constant Default (line 19) | Default Type = iota
  constant ANSI (line 20) | ANSI
  constant Extended (line 21) | Extended
  constant TrueColor (line 22) | TrueColor
  function FromANSI (line 25) | func FromANSI(index uint8) Color {
  function FromExtended (line 29) | func FromExtended(index uint8) Color {
  function FromRGB (line 33) | func FromRGB(r, g, b uint8) Color {
  function RGBAtoHex (line 57) | func RGBAtoHex(rgba color.RGBA) string {

FILE: pkg/color/colorsgen.go
  function main (line 71) | func main() {

FILE: pkg/color/palette.go
  type Palette (line 6) | type Palette
    method At (line 9) | func (p *Palette) At(index uint8) color.RGBA {
  function Standard (line 14) | func Standard() Palette {

FILE: pkg/ir/ir.go
  type Recording (line 14) | type Recording struct
  type Stats (line 31) | type Stats struct
  type Cursor (line 43) | type Cursor struct
  type Frame (line 50) | type Frame struct
  type Row (line 68) | type Row struct
  type TextRun (line 78) | type TextRun struct
  type CellAttrs (line 90) | type CellAttrs struct

FILE: pkg/ir/ir_test.go
  function TestProcessor_Process (line 10) | func TestProcessor_Process(t *testing.T) {
  function TestProcessor_Compression (line 64) | func TestProcessor_Compression(t *testing.T) {
  function TestProcessor_SpeedAdjustment (line 94) | func TestProcessor_SpeedAdjustment(t *testing.T) {
  function TestProcessor_IdleTimeCap (line 122) | func TestProcessor_IdleTimeCap(t *testing.T) {
  function TestTextRunGrouping (line 157) | func TestTextRunGrouping(t *testing.T) {
  function TestAttrsEqual (line 195) | func TestAttrsEqual(t *testing.T) {

FILE: pkg/ir/processor.go
  type ProcessorConfig (line 14) | type ProcessorConfig struct
  type Processor (line 23) | type Processor struct
    method Process (line 43) | func (p *Processor) Process(cast *asciicast.Cast) (*Recording, error) {
    method captureFrame (line 114) | func (p *Processor) captureFrame(
    method captureRow (line 145) | func (p *Processor) captureRow(
    method cellToAttrs (line 204) | func (p *Processor) cellToAttrs(
    method preprocessEvents (line 241) | func (p *Processor) preprocessEvents(cast *asciicast.Cast) []asciicast...
  function DefaultProcessorConfig (line 28) | func DefaultProcessorConfig() *ProcessorConfig {
  function NewProcessor (line 38) | func NewProcessor(config *ProcessorConfig) *Processor {
  function attrsEqual (line 293) | func attrsEqual(a, b CellAttrs) bool {
  function floatSecondsToDuration (line 302) | func floatSecondsToDuration(seconds float64) time.Duration {
  function deduplicateFrames (line 308) | func deduplicateFrames(frames []Frame) []Frame {
  function framesEqual (line 346) | func framesEqual(a, b *Frame) bool {
  function rowsEqual (line 368) | func rowsEqual(a, b *Row) bool {
  function textRunsEqual (line 387) | func textRunsEqual(a, b *TextRun) bool {

FILE: pkg/progress/progress.go
  type Update (line 14) | type Update struct
  type Reporter (line 21) | type Reporter struct
    method Start (line 28) | func (r *Reporter) Start() {
    method Wait (line 61) | func (r *Reporter) Wait() {
  function newBar (line 66) | func newBar(total int, description string) *progressbar.ProgressBar {
  function New (line 77) | func New() (reporter *Reporter, progressCh chan<- Update) {

FILE: pkg/raster/draw.go
  type textRunColors (line 16) | type textRunColors struct
  constant baselineOffset (line 26) | baselineOffset = 5
  constant underlineOffset (line 29) | underlineOffset = 2
  constant windowCornerRadius (line 32) | windowCornerRadius = 5
  constant windowButtonSpacing (line 35) | windowButtonSpacing = 20
  constant windowButtonRadius (line 38) | windowButtonRadius = 6
  method computeTextRunColors (line 42) | func (r *Rasterizer) computeTextRunColors(run ir.TextRun, rowY int, cata...
  method drawTextRunWithFace (line 86) | func (r *Rasterizer) drawTextRunWithFace(
  method drawCursor (line 123) | func (r *Rasterizer) drawCursor(img *image.RGBA, cursor ir.Cursor, catal...
  method drawWindow (line 142) | func (r *Rasterizer) drawWindow(img *image.RGBA) {
  method drawBackground (line 159) | func (r *Rasterizer) drawBackground(img *image.RGBA) {
  method drawTerminalBackground (line 167) | func (r *Rasterizer) drawTerminalBackground(img *image.RGBA, width, heig...
  method drawRoundedRect (line 182) | func (r *Rasterizer) drawRoundedRect(img *image.RGBA, bounds image.Recta...
  method drawCircle (line 192) | func (r *Rasterizer) drawCircle(img *image.RGBA, cx, cy, radius int, c c...
  method contentOffsetY (line 203) | func (r *Rasterizer) contentOffsetY() int {
  method contentWidth (line 211) | func (r *Rasterizer) contentWidth(cols int) int {
  method contentHeight (line 216) | func (r *Rasterizer) contentHeight(rows int) int {
  method paddedWidth (line 221) | func (r *Rasterizer) paddedWidth(cols int) int {
  method paddedHeight (line 226) | func (r *Rasterizer) paddedHeight(rows int) int {
  function dimColor (line 235) | func dimColor(c color.RGBA) color.RGBA {
  method drawTextRunToPaletted (line 248) | func (r *Rasterizer) drawTextRunToPaletted(
  method drawCursorToPaletted (line 285) | func (r *Rasterizer) drawCursorToPaletted(img *image.Paletted, cursor ir...

FILE: pkg/raster/font.go
  function loadFontFace (line 14) | func loadFontFace(size float64) (font.Face, error) {

FILE: pkg/raster/paletted.go
  type palettedFrameRenderer (line 17) | type palettedFrameRenderer struct
    method render (line 27) | func (fr *palettedFrameRenderer) render() ([]PalettedFrame, error) {
    method renderSingleFrame (line 96) | func (fr *palettedFrameRenderer) renderSingleFrame(
    method createPalettedBaseImage (line 119) | func (fr *palettedFrameRenderer) createPalettedBaseImage(
    method copyPalettedBaseImage (line 145) | func (fr *palettedFrameRenderer) copyPalettedBaseImage(base *image.Pal...
    method drawFrameContentToPaletted (line 153) | func (fr *palettedFrameRenderer) drawFrameContentToPaletted(img *image...

FILE: pkg/raster/raster.go
  type RasterFrame (line 23) | type RasterFrame struct
  type Config (line 35) | type Config struct
  type Rasterizer (line 59) | type Rasterizer struct
    method Close (line 112) | func (r *Rasterizer) Close() error {
    method Rasterize (line 121) | func (r *Rasterizer) Rasterize(rec *ir.Recording) ([]RasterFrame, erro...
    method RasterizeWithPalette (line 138) | func (r *Rasterizer) RasterizeWithPalette(rec *ir.Recording, palette c...
  type PalettedFrame (line 65) | type PalettedFrame struct
  constant RowHeight (line 78) | RowHeight  = 25
  constant ColWidth (line 79) | ColWidth   = 12
  constant Padding (line 80) | Padding    = 20
  constant HeaderSize (line 81) | HeaderSize = 2
  function DefaultConfig (line 85) | func DefaultConfig() Config {
  function New (line 99) | func New(config *Config) (*Rasterizer, error) {

FILE: pkg/raster/raster_test.go
  function TestNew (line 12) | func TestNew(t *testing.T) {
  function TestRasterize_EmptyRecording (line 28) | func TestRasterize_EmptyRecording(t *testing.T) {
  function TestRasterize_SingleFrame (line 47) | func TestRasterize_SingleFrame(t *testing.T) {
  function TestRasterize_MultipleFrames (line 121) | func TestRasterize_MultipleFrames(t *testing.T) {
  function TestRasterize_WithWindow (line 186) | func TestRasterize_WithWindow(t *testing.T) {
  function TestRasterize_WithoutWindow (line 233) | func TestRasterize_WithoutWindow(t *testing.T) {
  function TestRasterize_MultipleUniqueFrames (line 277) | func TestRasterize_MultipleUniqueFrames(t *testing.T) {
  function TestRasterize_WithStyling (line 355) | func TestRasterize_WithStyling(t *testing.T) {
  function TestRasterize_WithCursor (line 424) | func TestRasterize_WithCursor(t *testing.T) {
  function TestRasterize_MultipleRows (line 469) | func TestRasterize_MultipleRows(t *testing.T) {
  function TestDefaultConfig (line 516) | func TestDefaultConfig(t *testing.T) {
  function TestDimColor (line 539) | func TestDimColor(t *testing.T) {

FILE: pkg/raster/renderer.go
  type frameRenderer (line 15) | type frameRenderer struct
    method render (line 24) | func (fr *frameRenderer) render() ([]RasterFrame, error) {
    method renderSingleFrame (line 93) | func (fr *frameRenderer) renderSingleFrame(
    method createBaseImage (line 116) | func (fr *frameRenderer) createBaseImage(width, height, contentWidth, ...
    method copyBaseImage (line 135) | func (fr *frameRenderer) copyBaseImage(base *image.RGBA) *image.RGBA {
    method drawFrameContent (line 143) | func (fr *frameRenderer) drawFrameContent(img *image.RGBA, frame ir.Fr...

FILE: pkg/raster/renderer_bench_test.go
  function createBenchmarkRecording (line 15) | func createBenchmarkRecording(numFrames, width, height int) *ir.Recording {
  function BenchmarkRasterize_10Frames (line 53) | func BenchmarkRasterize_10Frames(b *testing.B) {
  function BenchmarkRasterize_50Frames (line 73) | func BenchmarkRasterize_50Frames(b *testing.B) {
  function BenchmarkRasterize_100Frames (line 93) | func BenchmarkRasterize_100Frames(b *testing.B) {
  function BenchmarkRasterize_200Frames (line 113) | func BenchmarkRasterize_200Frames(b *testing.B) {
  function BenchmarkRasterize_WithWindow (line 133) | func BenchmarkRasterize_WithWindow(b *testing.B) {

FILE: pkg/renderer/gif/renderer.go
  type Renderer (line 22) | type Renderer struct
    method Format (line 59) | func (r *Renderer) Format() string {
    method FileExtension (line 64) | func (r *Renderer) FileExtension() string {
    method Render (line 69) | func (r *Renderer) Render(ctx context.Context, rec *ir.Recording, w io...
    method sendProgress (line 121) | func (r *Renderer) sendProgress(current, total int) {
    method assembleGIF (line 135) | func (r *Renderer) assembleGIF(frames []raster.PalettedFrame, w io.Wri...
    method calculateDelay (line 161) | func (r *Renderer) calculateDelay(delay time.Duration, frameIdx, total...
    method processFrame (line 169) | func (r *Renderer) processFrame(g *gif.GIF, prev, curr *image.Paletted...
    method encodeAndLog (line 199) | func (r *Renderer) encodeAndLog(g *gif.GIF, w io.Writer, t *gifTimings...
    method buildPalette (line 251) | func (r *Renderer) buildPalette(rec *ir.Recording) color.Palette {
  type gifTimings (line 28) | type gifTimings struct
  constant gifTimeUnit (line 38) | gifTimeUnit = 10
  constant minGifDelay (line 42) | minGifDelay = 2
  function New (line 46) | func New(config *renderer.Config) (*Renderer, error) {
  function framesEqual (line 217) | func framesEqual(a, b *image.Paletted) bool {
  function computeDelta (line 231) | func computeDelta(prev, curr *image.Paletted, transparentIdx uint8) *ima...

FILE: pkg/renderer/gif/renderer_test.go
  function TestRenderer_Format (line 18) | func TestRenderer_Format(t *testing.T) {
  function TestRenderer_FileExtension (line 29) | func TestRenderer_FileExtension(t *testing.T) {
  function TestRenderer_Render_EmptyRecording (line 40) | func TestRenderer_Render_EmptyRecording(t *testing.T) {
  function TestRenderer_Render_SingleFrame (line 57) | func TestRenderer_Render_SingleFrame(t *testing.T) {
  function TestRenderer_Render_MultipleFrames (line 113) | func TestRenderer_Render_MultipleFrames(t *testing.T) {
  function TestRenderer_Render_WithWindow (line 171) | func TestRenderer_Render_WithWindow(t *testing.T) {
  function TestRenderer_Render_WithoutWindow (line 222) | func TestRenderer_Render_WithoutWindow(t *testing.T) {
  function TestRenderer_Render_ContextCancellation (line 269) | func TestRenderer_Render_ContextCancellation(t *testing.T) {

FILE: pkg/renderer/renderer.go
  type Renderer (line 15) | type Renderer interface
  type Config (line 22) | type Config struct
  function DefaultConfig (line 41) | func DefaultConfig() *Config {
  function NewRasterizer (line 55) | func NewRasterizer(config *Config) (*raster.Rasterizer, error) {

FILE: pkg/renderer/svg/renderer.go
  type Renderer (line 18) | type Renderer struct
    method Format (line 53) | func (r *Renderer) Format() string {
    method FileExtension (line 58) | func (r *Renderer) FileExtension() string {
    method Render (line 63) | func (r *Renderer) Render(ctx context.Context, rec *ir.Recording, w io...
  type canvas (line 23) | type canvas struct
    method contentWidth (line 78) | func (c *canvas) contentWidth() int {
    method contentHeight (line 82) | func (c *canvas) contentHeight() int {
    method paddedWidth (line 86) | func (c *canvas) paddedWidth() int {
    method paddedHeight (line 90) | func (c *canvas) paddedHeight() int {
    method render (line 97) | func (c *canvas) render(ctx context.Context) error {
    method writeBackground (line 148) | func (c *canvas) writeBackground() {
    method writeWindow (line 153) | func (c *canvas) writeWindow() {
    method writeStyles (line 169) | func (c *canvas) writeStyles() {
    method generateKeyframes (line 212) | func (c *canvas) generateKeyframes() string {
    method writeBGFilters (line 233) | func (c *canvas) writeBGFilters() {
    method writeFrames (line 261) | func (c *canvas) writeFrames() {
    method writeFrame (line 271) | func (c *canvas) writeFrame(frame ir.Frame) {
    method writeCursor (line 284) | func (c *canvas) writeCursor(cursor ir.Cursor) {
    method writeTextRun (line 293) | func (c *canvas) writeTextRun(run ir.TextRun, rowY int) {
  constant RowHeight (line 32) | RowHeight  = 25
  constant ColWidth (line 33) | ColWidth   = 12
  constant Padding (line 34) | Padding    = 20
  constant HeaderSize (line 35) | HeaderSize = 2
  constant windowCornerRadius (line 38) | windowCornerRadius = 5
  constant windowButtonSpacing (line 41) | windowButtonSpacing = 20
  constant windowButtonRadius (line 44) | windowButtonRadius = 6
  function New (line 48) | func New(config *renderer.Config) *Renderer {

FILE: pkg/renderer/svg/renderer_test.go
  function TestNew (line 20) | func TestNew(t *testing.T) {
  function TestRender_EmptyRecording (line 35) | func TestRender_EmptyRecording(t *testing.T) {
  function TestRender_BasicStructure (line 55) | func TestRender_BasicStructure(t *testing.T) {
  function TestRender_WindowChrome (line 84) | func TestRender_WindowChrome(t *testing.T) {
  function TestRender_NoWindowChrome (line 109) | func TestRender_NoWindowChrome(t *testing.T) {
  function TestRender_Keyframes (line 129) | func TestRender_Keyframes(t *testing.T) {
  function TestRender_ColorClasses (line 152) | func TestRender_ColorClasses(t *testing.T) {
  function TestRender_TextAttributes (line 192) | func TestRender_TextAttributes(t *testing.T) {
  function TestRender_BackgroundFilters (line 254) | func TestRender_BackgroundFilters(t *testing.T) {
  function TestRender_HTMLEscaping (line 307) | func TestRender_HTMLEscaping(t *testing.T) {
  function TestRender_LoopCount (line 348) | func TestRender_LoopCount(t *testing.T) {
  function TestRender_ContextCancellation (line 381) | func TestRender_ContextCancellation(t *testing.T) {
  function TestCanvas_Dimensions (line 396) | func TestCanvas_Dimensions(t *testing.T) {
  function createTestRecording (line 438) | func createTestRecording() *ir.Recording {
  function TestIntegration_256Colors (line 488) | func TestIntegration_256Colors(t *testing.T) {

FILE: pkg/renderer/webm/renderer.go
  type Renderer (line 20) | type Renderer struct
    method Format (line 44) | func (r *Renderer) Format() string {
    method FileExtension (line 49) | func (r *Renderer) FileExtension() string {
    method Render (line 54) | func (r *Renderer) Render(ctx context.Context, rec *ir.Recording, w io...
    method encodeToWebM (line 101) | func (r *Renderer) encodeToWebM(frames []raster.RasterFrame, w io.Writ...
    method filterFrames (line 264) | func (r *Renderer) filterFrames(frames []raster.RasterFrame) []raster....
  function New (line 26) | func New(config *renderer.Config) (*Renderer, error) {

FILE: pkg/renderer/webm/renderer_test.go
  function TestRenderer_Format (line 15) | func TestRenderer_Format(t *testing.T) {
  function TestRenderer_FileExtension (line 27) | func TestRenderer_FileExtension(t *testing.T) {
  function TestRenderer_Render_EmptyRecording (line 39) | func TestRenderer_Render_EmptyRecording(t *testing.T) {
  function TestRenderer_Render_SingleFrame (line 57) | func TestRenderer_Render_SingleFrame(t *testing.T) {
  function TestRenderer_Render_MultipleFrames (line 122) | func TestRenderer_Render_MultipleFrames(t *testing.T) {
  function TestRenderer_Render_WithDebug (line 179) | func TestRenderer_Render_WithDebug(t *testing.T) {
  function TestNew_WithoutFFmpeg (line 222) | func TestNew_WithoutFFmpeg(t *testing.T) {

FILE: pkg/terminal/terminal.go
  type Cell (line 9) | type Cell struct
  type State (line 20) | type State interface
  type Emulator (line 27) | type Emulator struct
    method Write (line 40) | func (e *Emulator) Write(data []byte) (int, error) {
    method Width (line 45) | func (e *Emulator) Width() int {
    method Height (line 51) | func (e *Emulator) Height() int {
    method Cell (line 57) | func (e *Emulator) Cell(col, row int) Cell {
    method Cursor (line 71) | func (e *Emulator) Cursor() (col, row int) {
    method CursorVisible (line 77) | func (e *Emulator) CursorVisible() bool {
  function New (line 31) | func New(width, height int) *Emulator {
  function convertColor (line 82) | func convertColor(c vt10x.Color) color.Color {

FILE: pkg/theme/loader.go
  function Load (line 14) | func Load(nameOrPath string) (Theme, error) {
  function LoadFromFile (line 27) | func LoadFromFile(path string) (Theme, error) {
  function loadThemeFile (line 56) | func loadThemeFile(path string) (Theme, error) {
  function LoadBuiltin (line 79) | func LoadBuiltin(name string) (Theme, error) {
  function IsBuiltin (line 92) | func IsBuiltin(name string) bool {
  function ListBuiltin (line 99) | func ListBuiltin() []string {

FILE: pkg/theme/theme.go
  type Theme (line 13) | type Theme struct
  function Default (line 23) | func Default() Theme {
  function FromAsciinema (line 42) | func FromAsciinema(name, fg, bg, palette string) (Theme, error) {
  function ParseHexColor (line 82) | func ParseHexColor(hex string) (color.RGBA, error) {
Condensed preview — 71 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (863K chars).
[
  {
    "path": ".github/workflows/golangci-lint.yml",
    "chars": 699,
    "preview": "name: golangci-lint\n\non:\n  push:\n    tags:\n      - v*\n    branches:\n      - master\n      - main\n  pull_request:\n\npermiss"
  },
  {
    "path": ".github/workflows/release.yml",
    "chars": 535,
    "preview": "name: \"Release a tag\"\n\non:\n  push:\n    tags:\n      - \"*\"\n\npermissions:\n  contents: write\n\njobs:\n  release:\n    runs-on: "
  },
  {
    "path": ".gitignore",
    "chars": 69,
    "preview": ".vscode\n/termsvg\n*.cast\n*.txt\n.task\ndist\n*.svg\n!examples/*.*\n*.bench\n"
  },
  {
    "path": ".golangci.yml",
    "chars": 1481,
    "preview": "version: \"2\"\n\nformatters:\n  enable:\n    - goimports\n    - gci\n    - gofumpt\n\nlinters:\n  enable:\n    - asciicheck\n    - b"
  },
  {
    "path": ".goreleaser.yml",
    "chars": 1554,
    "preview": "version: 1\n\nproject_name: termsvg\n\nbefore:\n  hooks:\n    - go mod tidy\n\nrelease:\n  github:\n    owner: mrmarble\n    name: "
  },
  {
    "path": ".pre-commit-config.yaml",
    "chars": 566,
    "preview": "repos:\n    - repo: https://github.com/pre-commit/pre-commit-hooks\n      rev: v3.2.0\n      hooks:\n        - id: trailing-"
  },
  {
    "path": "CONTRIBUTING.md",
    "chars": 1361,
    "preview": "# Contributing to TermSVG\n\n## Reporting bugs\n\nOpen an issue in GitHub issue tracker.\n\nTell me what's the problem and inc"
  },
  {
    "path": "LICENSE",
    "chars": 35149,
    "preview": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
  },
  {
    "path": "README.md",
    "chars": 5013,
    "preview": "<div align=\"center\">\n<img src=\"assets/logo.png\" width=\"150\">\n\n### Record, share and export your terminal as a animated S"
  },
  {
    "path": "Taskfile.yml",
    "chars": 2251,
    "preview": "# https://taskfile.dev\n\nversion: \"3\"\n\nenv:\n  GO111MODULE: on\n  GOPROXY: https://proxy.golang.org,direct\n\ntasks:\n  setup:"
  },
  {
    "path": "cmd/termsvg/export/export.go",
    "chars": 5412,
    "preview": "package export\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\t\"fmt\"\n\t\"log\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\t\"time\"\n\n\t\"github.com/mrmar"
  },
  {
    "path": "cmd/termsvg/main.go",
    "chars": 1160,
    "preview": "package main\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/alecthomas/kong\"\n\t\"github.com/mrmarble/termsvg/cmd/termsvg/export\"\n\t\"github."
  },
  {
    "path": "cmd/termsvg/main_windows.go",
    "chars": 1068,
    "preview": "//go:build windows\n\npackage main\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/alecthomas/kong\"\n\t\"github.com/mrmarble/termsvg/cmd/terms"
  },
  {
    "path": "cmd/termsvg/play/play.go",
    "chars": 1264,
    "preview": "package play\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"time\"\n\n\t\"github.com/mrmarble/termsvg/pkg/asciicast\"\n)\n\ntype Cmd s"
  },
  {
    "path": "cmd/termsvg/record/record.go",
    "chars": 4447,
    "preview": "package record\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"os/exec\"\n\t\"os/signal\"\n\t\"strings\"\n\t\"sync/atomic\"\n\t\"syscall\"\n\t\"time\"\n\n\t\"gith"
  },
  {
    "path": "cmd/themegen/main.go",
    "chars": 7095,
    "preview": "// Theme generator tool for termsvg.\n// Reads JSON theme files from themes/ directory and generates Go code.\npackage mai"
  },
  {
    "path": "examples/256colors.cast",
    "chars": 18564,
    "preview": "{\"version\":2,\"width\":120,\"height\":42,\"timestamp\":1647092161,\"duration\":10.296995,\"env\":{\"SHELL\":\"/usr/bin/zsh\",\"TERM\":\"x"
  },
  {
    "path": "examples/444816.cast",
    "chars": 458819,
    "preview": "{\"version\": 2, \"width\": 78, \"height\": 17, \"timestamp\": 1635318110, \"env\": {\"SHELL\": \"/bin/zsh\", \"TERM\": \"xterm-256color\""
  },
  {
    "path": "examples/README.md",
    "chars": 2062,
    "preview": "# Examples\n\nThis folder contains some examples of recordings and exports.\nIt's intended to be used as a demonstration of"
  },
  {
    "path": "examples/htop.cast",
    "chars": 11749,
    "preview": "{\"version\":2,\"width\":120,\"height\":30,\"timestamp\":1646522098,\"duration\":7.439,\"env\":{\"SHELL\":\"/usr/bin/zsh\",\"TERM\":\"xterm"
  },
  {
    "path": "examples/rgb.cast",
    "chars": 3564,
    "preview": "{\"version\":2,\"width\":94,\"height\":33,\"timestamp\":1752315249,\"duration\":3.54579,\"env\":{\"SHELL\":\"/bin/bash\",\"TERM\":\"xterm-2"
  },
  {
    "path": "examples/session.cast",
    "chars": 26727,
    "preview": "{\"version\":2,\"width\":120,\"height\":30,\"timestamp\":1646492752,\"duration\":34.765,\"env\":{\"SHELL\":\"/usr/bin/zsh\",\"TERM\":\"xter"
  },
  {
    "path": "go.mod",
    "chars": 587,
    "preview": "module github.com/mrmarble/termsvg\n\ngo 1.25.6\n\nrequire (\n\tgithub.com/alecthomas/kong v1.12.0\n\tgithub.com/creack/pty v1.1"
  },
  {
    "path": "go.sum",
    "chars": 2820,
    "preview": "github.com/alecthomas/assert/v2 v2.11.0 h1:2Q9r3ki8+JYXvGsDyBXwH3LcJ+WK5D0gc5E8vS6K3D0=\ngithub.com/alecthomas/assert/v2 "
  },
  {
    "path": "mise.toml",
    "chars": 82,
    "preview": "[tools]\ngo = \"latest\"\ngofumpt = \"latest\"\ngolangci-lint = \"latest\"\ntask = \"latest\"\n"
  },
  {
    "path": "pkg/asciicast/asciicast.go",
    "chars": 4914,
    "preview": "// Package asciicast provides methods for working\n// with asciinema's file format asciicast v2.\n//\n// Refer to the offic"
  },
  {
    "path": "pkg/asciicast/event.go",
    "chars": 1277,
    "preview": "package asciicast\n\nimport (\n\t\"encoding/json\"\n\t\"fmt\"\n)\n\ntype EventType string\n\n// Event is a 3-tuple encoded as JSON arra"
  },
  {
    "path": "pkg/asciicast/testdata/TestMarshal.golden",
    "chars": 148,
    "preview": "{\"version\":2,\"width\":0,\"height\":0,\"timestamp\":1337,\"env\":{\"SHELL\":\"TEST_SHELL\",\"TERM\":\"TEST_TERM\"}}\n[1,\"o\",\"First\"]\n[2,\""
  },
  {
    "path": "pkg/asciicast/testdata/TestUnmarshal.golden",
    "chars": 226,
    "preview": "{\"version\": 2, \"width\": 213, \"height\": 58, \"timestamp\": 1598646467, \"env\": {\"SHELL\": \"/usr/bin/zsh\", \"TERM\": \"alacritty\""
  },
  {
    "path": "pkg/color/catalog.go",
    "chars": 3493,
    "preview": "package color\n\nimport (\n\t\"image/color\"\n)\n\n// ID is a unique identifier for a color in the catalog.\n// Value 0 represents"
  },
  {
    "path": "pkg/color/catalog_test.go",
    "chars": 3936,
    "preview": "package color\n\nimport (\n\t\"image/color\"\n\t\"testing\"\n)\n\nfunc TestCatalog_Register(t *testing.T) {\n\tcatalog := NewCatalog(co"
  },
  {
    "path": "pkg/color/color.go",
    "chars": 1246,
    "preview": "package color\n\nimport (\n\t\"fmt\"\n\t\"image/color\"\n)\n\n// Type indicates how to interpret the color.\ntype Type uint8\n\n// Color"
  },
  {
    "path": "pkg/color/colors.go",
    "chars": 4555,
    "preview": "// Code generated by go generate; DO NOT EDIT.\n// This file was generated by robots at\n// 2022-03-12 13:34:58.775992569 "
  },
  {
    "path": "pkg/color/colorsgen.go",
    "chars": 2871,
    "preview": "// The following directive is necessary to make the package coherent:\n\n//go:build ignore\n// +build ignore\n\n// This progr"
  },
  {
    "path": "pkg/color/palette.go",
    "chars": 1620,
    "preview": "package color\n\nimport \"image/color\"\n\n// Palette holds the 256 terminal colors.\ntype Palette [256]color.RGBA\n\n// At retur"
  },
  {
    "path": "pkg/ir/ir.go",
    "chars": 2518,
    "preview": "// Package ir provides an intermediate representation for terminal recordings.\n// It decouples terminal emulation from r"
  },
  {
    "path": "pkg/ir/ir_test.go",
    "chars": 5432,
    "preview": "package ir\n\nimport (\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/mrmarble/termsvg/pkg/asciicast\"\n)\n\nfunc TestProcessor_Process(t *t"
  },
  {
    "path": "pkg/ir/processor.go",
    "chars": 9217,
    "preview": "package ir\n\nimport (\n\t\"time\"\n\n\t\"github.com/mrmarble/termsvg/pkg/asciicast\"\n\t\"github.com/mrmarble/termsvg/pkg/color\"\n\t\"gi"
  },
  {
    "path": "pkg/progress/progress.go",
    "chars": 2249,
    "preview": "// Package progress provides progress reporting for export operations.\n// It uses channels for thread-safe updates, maki"
  },
  {
    "path": "pkg/raster/draw.go",
    "chars": 9316,
    "preview": "package raster\n\nimport (\n\t\"image\"\n\t\"image/color\"\n\t\"image/draw\"\n\t\"unicode/utf8\"\n\n\ttermcolor \"github.com/mrmarble/termsvg/"
  },
  {
    "path": "pkg/raster/font.go",
    "chars": 560,
    "preview": "package raster\n\nimport (\n\t_ \"embed\"\n\n\t\"golang.org/x/image/font\"\n\t\"golang.org/x/image/font/opentype\"\n)\n\n//go:embed JetBra"
  },
  {
    "path": "pkg/raster/paletted.go",
    "chars": 4985,
    "preview": "package raster\n\nimport (\n\t\"image\"\n\t\"image/color\"\n\t\"image/draw\"\n\t\"runtime\"\n\t\"sync\"\n\t\"time\"\n\n\t\"github.com/mrmarble/termsvg"
  },
  {
    "path": "pkg/raster/raster.go",
    "chars": 4322,
    "preview": "// Package raster transforms terminal recordings (IR) into RGBA images.\n// It provides parallel frame rendering with IR-"
  },
  {
    "path": "pkg/raster/raster_test.go",
    "chars": 12067,
    "preview": "package raster\n\nimport (\n\t\"image/color\"\n\t\"testing\"\n\t\"time\"\n\n\ttermcolor \"github.com/mrmarble/termsvg/pkg/color\"\n\t\"github."
  },
  {
    "path": "pkg/raster/renderer.go",
    "chars": 4368,
    "preview": "package raster\n\nimport (\n\t\"image\"\n\t\"runtime\"\n\t\"sync\"\n\t\"time\"\n\n\t\"github.com/mrmarble/termsvg/pkg/ir\"\n\t\"github.com/mrmarbl"
  },
  {
    "path": "pkg/raster/renderer_bench_test.go",
    "chars": 3278,
    "preview": "package raster\n\nimport (\n\t\"image/color\"\n\t\"testing\"\n\t\"time\"\n\n\tirColor \"github.com/mrmarble/termsvg/pkg/color\"\n\t\"github.co"
  },
  {
    "path": "pkg/renderer/gif/renderer.go",
    "chars": 7627,
    "preview": "// Package gif provides a GIF renderer for terminal recordings.\n// It generates animated GIFs by rasterizing the termina"
  },
  {
    "path": "pkg/renderer/gif/renderer_test.go",
    "chars": 6467,
    "preview": "package gif\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\t\"errors\"\n\t\"image/color\"\n\t\"image/gif\"\n\t\"testing\"\n\t\"time\"\n\n\ttermcolor \"github.c"
  },
  {
    "path": "pkg/renderer/renderer.go",
    "chars": 1972,
    "preview": "package renderer\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"io\"\n\n\t\"github.com/mrmarble/termsvg/pkg/ir\"\n\t\"github.com/mrmarble/termsvg/"
  },
  {
    "path": "pkg/renderer/svg/renderer.go",
    "chars": 8758,
    "preview": "// Package svg provides an SVG renderer for terminal recordings.\n// It generates animated SVGs using CSS keyframes to tr"
  },
  {
    "path": "pkg/renderer/svg/renderer_test.go",
    "chars": 13733,
    "preview": "package svg\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\t\"errors\"\n\t\"image/color\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\t\"testing\"\n\t\"time\"\n"
  },
  {
    "path": "pkg/renderer/webm/renderer.go",
    "chars": 7731,
    "preview": "// Package webm provides a WebM video renderer for terminal recordings.\n// It generates WebM video files using FFmpeg fo"
  },
  {
    "path": "pkg/renderer/webm/renderer_test.go",
    "chars": 5412,
    "preview": "package webm\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\t\"image/color\"\n\t\"testing\"\n\t\"time\"\n\n\ttermcolor \"github.com/mrmarble/termsvg/pk"
  },
  {
    "path": "pkg/terminal/terminal.go",
    "chars": 2310,
    "preview": "package terminal\n\nimport (\n\t\"github.com/hinshun/vt10x\"\n\t\"github.com/mrmarble/termsvg/pkg/color\"\n)\n\n// Cell represents a "
  },
  {
    "path": "pkg/theme/builtin.go",
    "chars": 17646,
    "preview": "// Code generated by themegen. DO NOT EDIT.\n// Generated at: 2026-01-31T09:42:02+01:00\n\npackage theme\n\nimport (\n\t\"image/"
  },
  {
    "path": "pkg/theme/generate.go",
    "chars": 360,
    "preview": "//go:generate go run ../../cmd/themegen\n\npackage theme\n\n// This file contains the go:generate directive for theme code g"
  },
  {
    "path": "pkg/theme/loader.go",
    "chars": 3018,
    "preview": "package theme\n\nimport (\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n)\n\n// Load loads a theme by name (buil"
  },
  {
    "path": "pkg/theme/theme.go",
    "chars": 3839,
    "preview": "package theme\n\nimport (\n\t\"fmt\"\n\t\"image/color\"\n\t\"strconv\"\n\t\"strings\"\n\n\ttermcolor \"github.com/mrmarble/termsvg/pkg/color\"\n"
  },
  {
    "path": "scripts/install-termsvg.sh",
    "chars": 2997,
    "preview": "#!/usr/bin/env bash\n\nfunction get_termsvg() {\n  local DIST=\"\"\n  local EXT=\"\"\n  local FILENAME=\"\"\n  local KERNEL=\"\"\n  loc"
  },
  {
    "path": "scripts/update-filesize.sh",
    "chars": 1613,
    "preview": "#!/usr/bin/env bash\n\n# Root folder using git\nBASE_PATH=$(git rev-parse --show-toplevel)\n\nEXAMPLES_FOLDER=\"$BASE_PATH/exa"
  },
  {
    "path": "themes/dracula.json",
    "chars": 184,
    "preview": "{\n  \"fg\": \"#f8f8f2\",\n  \"bg\": \"#282a36\",\n  \"palette\": \"#21222c:#ff5555:#50fa7b:#f1fa8c:#bd93f9:#ff79c6:#8be9fd:#f8f8f2:#6"
  },
  {
    "path": "themes/frappe.json",
    "chars": 184,
    "preview": "{\n  \"fg\": \"#c6d0f5\",\n  \"bg\": \"#303446\",\n  \"palette\": \"#51576d:#e78284:#a6d189:#e5c890:#8caaee:#f4b8e4:#81c8be:#b5bfe2:#6"
  },
  {
    "path": "themes/gruvbox-dark.json",
    "chars": 184,
    "preview": "{\n  \"fg\": \"#ebdbb2\",\n  \"bg\": \"#282828\",\n  \"palette\": \"#282828:#cc241d:#98971a:#d79921:#458588:#b16286:#689d6a:#a89984:#9"
  },
  {
    "path": "themes/gruvbox-light.json",
    "chars": 184,
    "preview": "{\n  \"fg\": \"#3c3836\",\n  \"bg\": \"#fbf1c7\",\n  \"palette\": \"#fbf1c7:#cc241d:#98971a:#d79921:#458588:#b16286:#689d6a:#7c6f64:#9"
  },
  {
    "path": "themes/latte.json",
    "chars": 184,
    "preview": "{\n  \"fg\": \"#4c4f69\",\n  \"bg\": \"#eff1f5\",\n  \"palette\": \"#5c5f77:#d20f39:#40a02b:#df8e1d:#1e66f5:#ea76cb:#179299:#acb0be:#6"
  },
  {
    "path": "themes/macchiato.json",
    "chars": 184,
    "preview": "{\n  \"fg\": \"#cad3f5\",\n  \"bg\": \"#24273a\",\n  \"palette\": \"#494d64:#ed8796:#a6da95:#eed49f:#8aadf4:#f5bde6:#8bd5ca:#b8c0e0:#5"
  },
  {
    "path": "themes/mocha.json",
    "chars": 184,
    "preview": "{\n  \"fg\": \"#cdd6f4\",\n  \"bg\": \"#1e1e2e\",\n  \"palette\": \"#45475a:#f38ba8:#a6e3a1:#f9e2af:#89b4fa:#f5c2e7:#94e2d5:#bac2de:#5"
  },
  {
    "path": "themes/monokai.json",
    "chars": 184,
    "preview": "{\n  \"fg\": \"#f8f8f2\",\n  \"bg\": \"#272822\",\n  \"palette\": \"#272822:#f92672:#a6e22e:#f4bf75:#66d9ef:#ae81ff:#a1efe4:#f8f8f2:#7"
  },
  {
    "path": "themes/nord.json",
    "chars": 184,
    "preview": "{\n  \"fg\": \"#eceff4\",\n  \"bg\": \"#2e3440\",\n  \"palette\": \"#3b4252:#bf616a:#a3be8c:#ebcb8b:#81a1c1:#b48ead:#88c0d0:#eceff4:#4"
  },
  {
    "path": "themes/solarized-dark.json",
    "chars": 184,
    "preview": "{\n  \"fg\": \"#839496\",\n  \"bg\": \"#002b36\",\n  \"palette\": \"#073642:#dc322f:#859900:#b58900:#268bd2:#d33682:#2aa198:#eee8d5:#0"
  },
  {
    "path": "themes/solarized-light.json",
    "chars": 184,
    "preview": "{\n  \"fg\": \"#657b83\",\n  \"bg\": \"#fdf6e3\",\n  \"palette\": \"#073642:#dc322f:#859900:#b58900:#268bd2:#d33682:#2aa198:#eee8d5:#0"
  }
]

About this extraction

This page contains the full source code of the MrMarble/termsvg GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 71 files (744.3 KB), approximately 391.8k tokens, and a symbol index with 297 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!